//spop: fix wording

This commit is contained in:
Starbeamrainbowlabs 2021-08-07 17:50:28 +01:00
parent 516611db63
commit e1b1efb7ed
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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
})