mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 23:42:59 +00:00
Bugfix: fix crash in pos_marker_wall/delete
This commit is contained in:
parent
f590304995
commit
b42c8f2641
1 changed files with 1 additions and 0 deletions
|
@ -20,6 +20,7 @@ local last_resets = {}
|
|||
-- @param player_name string The name of the player to fetch the last_reset value for.
|
||||
-- @param update=false bool If true, then update the last_reset value for the given player to a new value.
|
||||
local function get_last_reset(player_name, update)
|
||||
if player_name == nil then return nil end
|
||||
if update == nil then update = false end
|
||||
if last_resets[player_name] == nil or update then
|
||||
last_resets[player_name] = make_id()
|
||||
|
|
Loading…
Reference in a new issue