diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-04-04 22:57:29 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-04-04 22:57:29 +0300 |
commit | 24953ba9746427e908daee7ab5c0c30779d90aac (patch) | |
tree | d315c2acb4dc501b1811be0774af83ffb92b6b04 | |
parent | 22a5a1fa43405c6682d70b3c2f0957d0d26551af (diff) | |
download | minetest-24953ba9746427e908daee7ab5c0c30779d90aac.tar.gz minetest-24953ba9746427e908daee7ab5c0c30779d90aac.tar.bz2 minetest-24953ba9746427e908daee7ab5c0c30779d90aac.zip |
Fix super-small size of regular item entities
-rw-r--r-- | builtin/item_entity.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/item_entity.lua b/builtin/item_entity.lua index ad0060b48..a06afc5ea 100644 --- a/builtin/item_entity.lua +++ b/builtin/item_entity.lua @@ -46,6 +46,7 @@ minetest.register_entity("__builtin:item", { if item_texture and item_texture ~= "" then prop.visual = "sprite" prop.textures = {item_texture} + prop.visual_size = {x=0.50, y=0.50} else prop.visual = "wielditem" prop.textures = {itemname} |