Skip to content

Commit

Permalink
fix: change night emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Mar 17, 2023
1 parent 210c76c commit 56f0879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eventHandlers/Ready.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class OnReadyHandle extends Handler {
const vs = vallisState
? `${timeDeltaToMinutesString(vsFromNow) || '0m'}: ${vallisState.isWarm ? '🔥' : '❄️'} • `
: '';
const cs = cetusState ? `${timeDeltaToMinutesString(csFromNow) || '0m'}: ${cetusState.isDay ? '☀️' : '🌕'}` : '';
const cs = cetusState ? `${timeDeltaToMinutesString(csFromNow) || '0m'}: ${cetusState.isDay ? '☀️' : '🌙'}` : '';
return `${vs}${cs}`;
}
return base;
Expand Down

0 comments on commit 56f0879

Please sign in to comment.