diff options
author | Zefram <zefram@fysh.org> | 2014-06-22 10:41:52 +0100 |
---|---|---|
committer | RealBadAngel <maciej.kasatkin@o2.pl> | 2014-06-27 18:48:10 +0200 |
commit | 4ea213c1e0fd0edbb373108bf007d948952ffdc4 (patch) | |
tree | 1b3ca336e0df38641c85dca1827da62f64d8697f /technic_chests/mithril_chest.lua | |
parent | 96ad67b9efe48c55a1235593583878aaf4a42f67 (diff) |
Reduce mithril chest to gold chest size
Due to concerns about form appearance, reduce mithril chest size to avoid
its form exceeding screen height. This reduces it to the same size as
the gold chest. Having two chest types of the same size looks silly now,
but will be reasonable as soon as mithril chests get their long-planned
special features.
Diffstat (limited to 'technic_chests/mithril_chest.lua')
-rw-r--r-- | technic_chests/mithril_chest.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic_chests/mithril_chest.lua b/technic_chests/mithril_chest.lua index 8fb7baa..69e7f17 100644 --- a/technic_chests/mithril_chest.lua +++ b/technic_chests/mithril_chest.lua @@ -26,7 +26,7 @@ minetest.register_craft({ technic.chests:register("Mithril", { width = 15, - height = 7, + height = 6, sort = true, autosort = true, infotext = false, @@ -36,7 +36,7 @@ technic.chests:register("Mithril", { technic.chests:register("Mithril", { width = 15, - height = 7, + height = 6, sort = true, autosort = true, infotext = false, |