From de78ffb55127bb56f0d57711b5253882bccd7a23 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Thu, 9 May 2024 00:00:33 +0200 Subject: [PATCH] Fix strings in modified_reason_strings one was also missing --- src/mapblock.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/mapblock.cpp b/src/mapblock.cpp index 3985324bb..b3e951b1f 100644 --- a/src/mapblock.cpp +++ b/src/mapblock.cpp @@ -42,21 +42,22 @@ with this program; if not, write to the Free Software Foundation, Inc., static const char *modified_reason_strings[] = { "reallocate or initial", "setIsUnderground", - "setLightingExpired", + "setLightingComplete", "setGenerated", "setNode", "setTimestamp", - "NodeMetaRef::reportMetadataChange", + "reportMetadataChange", "clearAllObjects", "Timestamp expired (step)", "addActiveObjectRaw", - "removeRemovedObjects/remove", - "removeRemovedObjects/deactivate", - "Stored list cleared in activateObjects due to overflow", - "deactivateFarObjects: Static data moved in", - "deactivateFarObjects: Static data moved out", - "deactivateFarObjects: Static data changed considerably", - "finishBlockMake: expireDayNightDiff", + "removeRemovedObjects: remove", + "removeRemovedObjects: deactivate", + "objects cleared due to overflow", + "deactivateFarObjects: static data moved in", + "deactivateFarObjects: static data moved out", + "deactivateFarObjects: static data changed", + "finishBlockMake: expireIsAir", + "MMVManip::blitBackAll", "unknown", };