Skip to content

Commit

Permalink
Merge pull request #103 from Xayanide/dev-autostarttimer-improve-text…
Browse files Browse the repository at this point in the history
…s-and-error-messages

refactor(plugins#AutoStartTimer): improve texts and error messages
  • Loading branch information
Meowhal authored Jun 2, 2022
2 parents b5f8ed7 + 3548559 commit 5b641d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/AutoStartTimer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class AutoStartTimer extends LobbyPlugin {
case '*autostart_time':
let ct = parseInt(param);
if (Number.isNaN(ct)) {
this.logger.warn(`invalid *autostart_time param : ${param}`);
this.logger.warn(`Invalid Auto Start Timer time parameter: ${param}`);
return;
}
if (ct < WAITINGTIME_MIN) {
Expand Down

0 comments on commit 5b641d6

Please sign in to comment.