update bees, coloredwood, digidisplay, farming redo,

moreblocks, technic, travelnet, and unified dyes
This commit is contained in:
Vanessa Dannenberg
2018-10-12 07:57:26 -04:00
parent 0d094bed13
commit ef6f6484b0
38 changed files with 444 additions and 107 deletions

View File

@@ -1,7 +1,7 @@
local function removeEntity(pos)
local entitiesNearby = minetest.get_objects_inside_radius(pos,0.5)
for _,i in pairs(entitiesNearby) do
if i:get_luaentity().name == "digidisplay:text" then
if i:get_luaentity() and i:get_luaentity().name == "digidisplay:text" then
i:remove()
end
end