Skip to content

Commit 1d3ed2c

Browse files
MpcsNicholasBatesNZ
authored andcommitted
Fix welcome message
1 parent a6bc50d commit 1d3ed2c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

engine/src/main/java/org/destinationsol/game/console/ConsoleImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ public boolean execute(String commandName, List<String> params) {
319319
e.printStackTrace();
320320
}
321321

322-
//execute(commandName, params);
323322
return true;
324323
}
325324

engine/src/main/java/org/destinationsol/game/screens/ConsoleScreen.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ public void onAdd(SolApplication solApplication) {
148148
"Type 'help' to see a list with available commands or 'help <commandName>' for command details." + Console.NEW_LINE +
149149
"Text parameters do not need quotes, unless containing spaces. No commas between parameters." + Console.NEW_LINE +
150150
"You can use auto-completion by typing a partial command then hitting [tab] - examples:" + Console.NEW_LINE + Console.NEW_LINE +
151-
"gh + [tab] => 'ghost'" + Console.NEW_LINE +
152-
"help gh + [tab] => 'help ghost' (can auto complete commands fed to help)" + Console.NEW_LINE +
153-
"giv + [tab] => 'give givePermission' (use [tab] again to cycle between choices)" + Console.NEW_LINE +
154-
"lS + [tab] => 'listShapes' (camel casing abbreviated commands)" + Console.NEW_LINE);
151+
"go + [tab] => 'godMode'" + Console.NEW_LINE +
152+
"help gh + [tab] => 'help godMode' (can auto complete commands fed to help)" + Console.NEW_LINE +
153+
"(use [tab] again to cycle between choices)" + Console.NEW_LINE +
154+
"gM + [tab] => 'godMode' (camel casing abbreviated commands)" + Console.NEW_LINE);
155155
welcomePrinted = true;
156156
}
157157
}

0 commit comments

Comments
 (0)