Update 'textures_pack_30000/init.lua'

This commit is contained in:
Milan2018 2021-05-15 21:56:37 +02:00
parent ec42ca25c8
commit c68bff67ac
1 changed files with 9 additions and 1 deletions

View File

@ -1 +1,9 @@
--
minetest.after(1,function()
local t=minetest.registered_entities["__builtin:item"]
local old=t.on_step
function t.on_step(self,dtime,m)
local m=m or {}
old(self,dtime,m)
end
minetest.register_entity(":__builtin:item",t)
end)