3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 05:20:07 +01:00

Fixed ancient vanilla typo in offline mode warnings. Thanks to Alexitaly92 for catching it.

Dieser Commit ist enthalten in:
Nathan Adams 2011-11-26 01:09:04 +00:00
Ursprung 256d4ba555
Commit 9907638130

Datei anzeigen

@ -135,7 +135,7 @@ public class MinecraftServer implements Runnable, ICommandListener, IMinecraftSe
log.warning("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!"); log.warning("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!");
log.warning("The server will make no attempt to authenticate usernames. Beware."); log.warning("The server will make no attempt to authenticate usernames. Beware.");
log.warning("While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose."); log.warning("While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.");
log.warning("To change this, set \"online-mode\" to \"true\" in the server.settings file."); log.warning("To change this, set \"online-mode\" to \"true\" in the server.properties file."); // CraftBukkit - type. Seriously. :D
} }
this.serverConfigurationManager = new ServerConfigurationManager(this); this.serverConfigurationManager = new ServerConfigurationManager(this);