diff options
author | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-11-20 09:32:26 +0100 |
---|---|---|
committer | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-11-20 09:32:26 +0100 |
commit | 2dcc55b6b678807771d972d634db8383fbf23504 (patch) | |
tree | 0fc28c4f979e1f995f23492999bddd836f6af05e /src | |
parent | Merge pull request #2661 from tboerger/musl-fixes (diff) | |
parent | Changed description to "Cuberite - Minecraft in C++!" (diff) | |
download | cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar.gz cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar.bz2 cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar.lz cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar.xz cuberite-2dcc55b6b678807771d972d634db8383fbf23504.tar.zst cuberite-2dcc55b6b678807771d972d634db8383fbf23504.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.cpp b/src/Server.cpp index 12c45467d..efb1dd4b6 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -189,7 +189,7 @@ void cServer::PlayerDestroying(const cPlayer * a_Player) bool cServer::InitServer(cSettingsRepositoryInterface & a_Settings, bool a_ShouldAuth) { - m_Description = a_Settings.GetValueSet("Server", "Description", "Cuberite - in C++!"); + m_Description = a_Settings.GetValueSet("Server", "Description", "Cuberite - Minecraft in C++!"); m_MaxPlayers = a_Settings.GetValueSetI("Server", "MaxPlayers", 100); m_bIsHardcore = a_Settings.GetValueSetB("Server", "HardcoreEnabled", false); m_bAllowMultiLogin = a_Settings.GetValueSetB("Server", "AllowMultiLogin", false); |