From cfc1fe363976b2244465b918cea3a4231ab6ddcd Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 11 Jan 2023 02:32:01 +0000 Subject: [PATCH] huh, weird. evidently we need all the checks ever ref #88 --- worldeditadditions_core/core/entities/pos_marker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldeditadditions_core/core/entities/pos_marker.lua b/worldeditadditions_core/core/entities/pos_marker.lua index 86071a1..26d2d19 100644 --- a/worldeditadditions_core/core/entities/pos_marker.lua +++ b/worldeditadditions_core/core/entities/pos_marker.lua @@ -53,7 +53,7 @@ local function create(player_name, pos, display_number) end local function delete(entity) - if not entity:get_luaentity() then return end -- Ensure the entity is still valid + if not entity.get_luaentity or not entity:get_luaentity() then return end -- Ensure the entity is still valid local player_name = entity:get_luaentity().player_name local display_number = entity:get_luaentity().display_number