Fixed typos

Fixed typos in the comments of the command config file
This commit is contained in:
J-onasJones 2023-09-26 23:30:45 +02:00
parent 3c73ed16a5
commit a4d242b6ef

View file

@ -22,12 +22,12 @@ public class CmdConfigs {
private static void createConfigs() {
cmdconfigs.addSingleLineComment("This is the command configuration file for BetterConsoleMC");
if (ISWINDOWS) {
cmdconfigs.addSingleLineComment("This message is there to remind you that the mod is running on a WINODWS machine");
cmdconfigs.addSingleLineComment("This message is there to remind you that the mod is running on a WINDOWS machine");
} else {
cmdconfigs.addSingleLineComment("This message is there to remind you that the mod is running on a UNIX-LIKE machine");
}
cmdconfigs.addSingleLineComment("The general syntax of defining a command goes like this:");
cmdconfigs.addSingleLineComment("[Command Mode] [Permissione Level] [Execution Timeout] [Execution Block Timeout] [Broadcast to OP] [Ingame Command name] [command to execute]");
cmdconfigs.addSingleLineComment("[Command Mode] [Permission Level] [Execution Timeout] [Execution Block Timeout] [Broadcast to OP] [In-game Command name] [command to execute]");
cmdconfigs.addSingleLineComment("Documentation and examples are available at the wiki of the repository");
}