Disable blast furnace clickboxes by default

A lot of people visit blast furnace without intention to actually do the
activity (e.g to buy ores) so simply disable the clickbox noise by
default and leave to user if they want them.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-08-29 00:06:03 +02:00
parent c96b5f857e
commit 5e5684f39f

View File

@@ -39,7 +39,7 @@ public interface BlastFurnaceConfig extends Config
)
default boolean showConveyorBelt()
{
return true;
return false;
}
@ConfigItem(
@@ -50,6 +50,6 @@ public interface BlastFurnaceConfig extends Config
)
default boolean showBarDispenser()
{
return true;
return false;
}
}