diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-08 23:36:16 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-08 23:40:26 +0100 |
commit | 91fd275c0b8243b47cf77500d3255695c39d55d6 (patch) | |
tree | 23bd7ed373d2f8135394147b2ccac98feb5ba5ca /src/World.cpp | |
parent | Merge pull request #2989 from LogicParrot/blockBreak (diff) | |
download | cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar.gz cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar.bz2 cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar.lz cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar.xz cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.tar.zst cuberite-91fd275c0b8243b47cf77500d3255695c39d55d6.zip |
Diffstat (limited to 'src/World.cpp')
-rw-r--r-- | src/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World.cpp b/src/World.cpp index 0cb2615ef..3bfb7c730 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -558,8 +558,8 @@ void cWorld::Start(void) if (!BadWorlds.empty()) { const char * WorldName = m_WorldName.c_str(); - LOGERROR("\n######\nERROR: %s is linked to one or more invalid worlds: %s\nPlease edit %s/world.ini and fix this.\n######\n", - WorldName, BadWorlds.c_str(), WorldName); + LOGERROR("\n###### ERROR: %s is linked to the following nonexisting world/s:\n%s\n\nPlease edit %s/world.ini and fix this.\n\nNote that the server started enforcing proper world linkages recently. And people with older configs may naturally get this error. If you just want a working default config and don't mind losing this world, delete the folder \"%s\" and the server will receate one for you. Otherwise edit the world.ini file and fix the invalid linkages.\n######\n", + WorldName, BadWorlds.c_str(), WorldName, WorldName); cRoot::Get()->StopServer(); } |