Remove nil fields from trapped chest definition

This commit is contained in:
Mikita Wiśniewski 2024-06-28 19:43:20 +07:00
parent 9a6d5feb56
commit 5e1719ca04

@ -101,14 +101,10 @@ mcl_chests.register_chest("trapped_chest", {
})
mcl_chests.register_chest("trapped_chest_on", {
desc = nil,
title = {
small = S("Chest"),
double = S("Large Chest")
},
longdesc = nil,
usagehelp = nil,
tt_help = nil,
tiles = traptiles,
groups = {
handy = 1,
@ -126,9 +122,6 @@ mcl_chests.register_chest("trapped_chest_on", {
rules = mesecon.rules.pplate,
},
},
on_rightclick = nil,
on_rightclick_left = nil,
on_rightclick_right = nil,
drop = "trapped_chest",
canonical_basename = "trapped_chest"
})