clear empty nametag as well as nil

This commit is contained in:
cora 2022-07-15 04:40:12 +02:00
parent 1a53c4081f
commit aab3180269
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ minetest.register_chatcommand("clearmobs",{
if o.is_mob then
if param == "all" or
( param == "nametagged" and o.nametag ) or
( param == "" and not o.nametag and not o.tamed ) or
( param == "" and ( not o.nametag or o.nametag == "" ) and not o.tamed ) or
( num and num > 0 and vector.distance(p:get_pos(),o.object:get_pos()) <= num ) then
o.object:remove()
end