mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
Fixes "?" console command.
This commit is contained in:
parent
3931be421e
commit
9c28b2134f
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ public class MinecraftServer implements ICommandListener, Runnable {
|
|||
ICommandListener icommandlistener = servercommand.b;
|
||||
String s1 = icommandlistener.c();
|
||||
|
||||
if (s.toLowerCase().startsWith("#help") || s.toLowerCase().startsWith("?")) {
|
||||
if (s.toLowerCase().startsWith("#help") || s.toLowerCase().startsWith("#?")) {
|
||||
icommandlistener.b("To run the server without a gui, start it like this:");
|
||||
icommandlistener.b(" java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui");
|
||||
icommandlistener.b("Console commands:");
|
||||
|
|
Loading…
Reference in a new issue