Remove nil fields from trapped chest definition
This commit is contained in:
parent
c1e9e4b1a2
commit
508bc19f6a
|
@ -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"
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue