diff options
author | Nathan Adams <dinnerbone@dinnerbone.com> | 2011-11-26 01:09:04 +0000 |
---|---|---|
committer | Nathan Adams <dinnerbone@dinnerbone.com> | 2011-11-26 01:09:04 +0000 |
commit | 9907638130278944613bd476f6f23c1617899174 (patch) | |
tree | ad6645bd3b5f20153af0c23aa01ce47cfc4a2592 /src/main/java | |
parent | 256d4ba5550178b943f36f45c3e3fe38ea9069d3 (diff) | |
download | craftbukkit-9907638130278944613bd476f6f23c1617899174.tar craftbukkit-9907638130278944613bd476f6f23c1617899174.tar.gz craftbukkit-9907638130278944613bd476f6f23c1617899174.tar.lz craftbukkit-9907638130278944613bd476f6f23c1617899174.tar.xz craftbukkit-9907638130278944613bd476f6f23c1617899174.zip |
Fixed ancient vanilla typo in offline mode warnings. Thanks to Alexitaly92 for catching it.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/net/minecraft/server/MinecraftServer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java index ecce9754..fcfe6d48 100644 --- a/src/main/java/net/minecraft/server/MinecraftServer.java +++ b/src/main/java/net/minecraft/server/MinecraftServer.java @@ -135,7 +135,7 @@ public class MinecraftServer implements Runnable, ICommandListener, IMinecraftSe log.warning("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!"); 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("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); |