diff options
author | Zughy <63455151+Zughy@users.noreply.github.com> | 2022-06-28 01:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 00:55:01 +0100 |
commit | 18fbc0394b9b3fc4e1e72550fb0e1113ee72ce64 (patch) | |
tree | 0a2e9ac62b2810aa7fbc7a5a3ee4c3e40dad4103 /builtin/game/item.lua | |
parent | 35ad006234ce40edc4c59feee63fb1546f643508 (diff) | |
download | minetest-18fbc0394b9b3fc4e1e72550fb0e1113ee72ce64.tar.gz minetest-18fbc0394b9b3fc4e1e72550fb0e1113ee72ce64.tar.bz2 minetest-18fbc0394b9b3fc4e1e72550fb0e1113ee72ce64.zip |
Remove tile_images and special_materials obsolete code (#12455)
Co-authored-by: Zughy <4279489-marco_a@users.noreply.gitlab.com>
Diffstat (limited to 'builtin/game/item.lua')
-rw-r--r-- | builtin/game/item.lua | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/builtin/game/item.lua b/builtin/game/item.lua index 5543e9a3f..be54d5f70 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -597,13 +597,8 @@ core.nodedef_default = { -- Node properties drawtype = "normal", visual_scale = 1.0, - -- Don't define these because otherwise the old tile_images and - -- special_materials wouldn't be read - --tiles ={""}, - --special_tiles = { - -- {name="", backface_culling=true}, - -- {name="", backface_culling=true}, - --}, + tiles = {}, + special_tiles = {}, post_effect_color = {a=0, r=0, g=0, b=0}, paramtype = "none", paramtype2 = "none", |