@@ -23,6 +23,7 @@ public class ItemSource extends Block{
|
||||
group = BlockGroup.transportation;
|
||||
configurable = true;
|
||||
saveConfig = true;
|
||||
noUpdateDisabled = true;
|
||||
|
||||
config(Item.class, (ItemSourceBuild tile, Item item) -> tile.outputItem = item);
|
||||
configClear((ItemSourceBuild tile) -> tile.outputItem = null);
|
||||
|
||||
@@ -24,6 +24,7 @@ public class LiquidSource extends Block{
|
||||
configurable = true;
|
||||
outputsLiquid = true;
|
||||
saveConfig = true;
|
||||
noUpdateDisabled = true;
|
||||
|
||||
config(Liquid.class, (LiquidSourceBuild tile, Liquid l) -> tile.source = l);
|
||||
configClear((LiquidSourceBuild tile) -> tile.source = null);
|
||||
|
||||
Reference in New Issue
Block a user