mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
pos_marker_manage: add some checks to update_entity event listener
For #105 because I can't reproduce the issue.
This commit is contained in:
parent
d3ddb5575e
commit
977dcc6a93
1 changed files with 6 additions and 0 deletions
|
@ -114,6 +114,12 @@ end)
|
||||||
|
|
||||||
|
|
||||||
wea_c.entities.pos_marker:addEventListener("update_entity", function(event)
|
wea_c.entities.pos_marker:addEventListener("update_entity", function(event)
|
||||||
|
ensure_player(event.player_name)
|
||||||
|
|
||||||
|
if position_entities[event.player_name][event.i] == nil then
|
||||||
|
minetest.log("warning", "[wea core:pos_manage:EL/update_entity] position_entities".."["..tostring(event.player_name).."]["..tostring(event.i).."] doesnt exist, event object "..wea.inspect(event).."\nPlease check WEA is up to date and then report this in https://github.com/sbrl/Minetest-WorldEditAdditions/issues/105.")
|
||||||
|
end
|
||||||
|
|
||||||
wea_c.entities.pos_marker.delete(
|
wea_c.entities.pos_marker.delete(
|
||||||
position_entities[event.player_name][event.i]
|
position_entities[event.player_name][event.i]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue