diff --git a/CHANGELOG.md b/CHANGELOG.md index 8edd3a7..ef1802e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Note to self: See the bottom of this file for the release template text. - `//walls`: Add optional thickness argument - `//floodfill`: Fix crash caused by internal refactoring of the `Queue` data structure - `//sstack`: Add human-readable approx volumes of regions in the selection stack + - `//spop`: Fix wording in displayed message ## v1.12: The selection tools update (26th June 2021) diff --git a/worldeditadditions_commands/commands/selectors/spop.lua b/worldeditadditions_commands/commands/selectors/spop.lua index 0e3ea9c..a7f1ba8 100644 --- a/worldeditadditions_commands/commands/selectors/spop.lua +++ b/worldeditadditions_commands/commands/selectors/spop.lua @@ -27,7 +27,7 @@ worldedit.register_command("spop", { local region_text = worldeditadditions.vector.tostring(worldedit.pos1[name]).." - "..worldeditadditions.vector.tostring(worldedit.pos2[name]) - minetest.log("action", name .. " used //spush at "..region_text..". Stack height is now " .. new_count.." regions") - return true, "Region "..region_text.." pushed onto selection stack; "..new_count.." region"..plural.." now in the stack" + minetest.log("action", name .. " used //spopped at "..region_text..". Stack height is now " .. new_count.." regions") + return true, "Region "..region_text.." popped from selection stack; "..new_count.." region"..plural.." now in the stack" end })