Skip to content

Commit

Permalink
Fix string format
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Mar 24, 2024
1 parent d30841a commit 344a22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BoosterManager/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ internal static class Commands {
}
} else {
BoosterHandler.BoosterHandlers[bot.BotName].StartMarketTimer(minutes);
repeatMessage = String.Format(Strings.RepetitionNotice, minutes, String.Format("!m2faok {1} 0", bot.BotName));
repeatMessage = String.Format(Strings.RepetitionNotice, minutes, String.Format("!m2faok {0} 0", bot.BotName));
}
}

Expand Down

0 comments on commit 344a22e

Please sign in to comment.