core pos: fix worldedit compat

This commit is contained in:
Starbeamrainbowlabs 2022-09-25 15:02:48 +01:00
parent 888e4b0f78
commit 9806828760
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 deletions

View File

@ -7,14 +7,14 @@ local function compat_worldedit_hide_pos1(player_name)
local pos1 = worldedit.pos1[player_name]
worldedit.pos1[player_name] = nil
worldedit.mark_pos1(player_name)
worldedit.pos1[player_name] = nil
worldedit.pos1[player_name] = pos1
end
local function compat_worldedit_hide_pos2(player_name)
if not worldedit or not worldedit.pos2 or not worldedit.mark_pos2 then return end
local pos2 = worldedit.pos2[player_name]
worldedit.pos2[player_name] = nil
worldedit.mark_pos2(player_name)
worldedit.pos2[player_name] = nil
worldedit.pos2[player_name] = pos2
end
--- Ensures that a table exists for the given player.