From 508bc19f6a4e8dd522e3f44a44818f5af37bfc3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikita=20Wi=C5=9Bniewski?= Date: Fri, 28 Jun 2024 19:43:20 +0700 Subject: [PATCH] Remove nil fields from trapped chest definition --- mods/ITEMS/mcl_chests/chests.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mods/ITEMS/mcl_chests/chests.lua b/mods/ITEMS/mcl_chests/chests.lua index 164ce7a9b..df4d6c13f 100644 --- a/mods/ITEMS/mcl_chests/chests.lua +++ b/mods/ITEMS/mcl_chests/chests.lua @@ -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" })