Brushup maidroid/api.lua

This commit is contained in:
tacigar 2016-12-17 18:43:01 +09:00
parent 88ee24b140
commit 959d308048
1 changed files with 8 additions and 8 deletions

View File

@ -250,15 +250,15 @@ end)
end
minetest.register_entity("maidroid:dummy_item", {
hp_max = 1,
visual = "wielditem",
visual_size = {x = 0.025, y = 0.025},
hp_max = 1,
visual = "wielditem",
visual_size = {x = 0.025, y = 0.025},
collisionbox = {0, 0, 0, 0, 0, 0},
physical = false,
textures = {"air"},
on_activate = on_activate,
on_step = on_step,
itemname = "",
physical = false,
textures = {"air"},
on_activate = on_activate,
on_step = on_step,
itemname = "",
})
end) ()