From 3fb32a55352c8dd6e21def07e7dcd37067992263 Mon Sep 17 00:00:00 2001 From: LogicParrot Date: Tue, 9 Feb 2016 10:02:36 +0200 Subject: [PATCH] Write to console when autofixing linkages --- src/Root.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Root.cpp b/src/Root.cpp index 11cc4e250..87c255b9c 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -410,6 +410,7 @@ void cRoot::LoadWorlds(cSettingsRepositoryInterface & a_Settings, bool a_IsNewIn a_Settings.AddValue("Worlds", "World", "world_nether"); a_Settings.AddValue("Worlds", "World", "world_end"); Worlds = a_Settings.GetValues("Worlds"); // Refresh the Worlds list so that the rest of the function works as usual + LOG("The server detected an old default config with bad world linkages. This has been autofixed by adding \"world_nether\" and \"world_end\" to settings.ini"); } } }