Bugfix new marker system: properly check that the lua entity is a thing

Missing ()
Might fix #88, but needs testing.
This commit is contained in:
Starbeamrainbowlabs 2023-01-11 02:18:06 +00:00
parent 554bc86b3d
commit 58dd3ea875
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

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