Skip to content

Commit

Permalink
Greatly bump up power usage
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Apr 30, 2024
1 parent 159a3a0 commit 73ef440
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ public EMCInterfaceLogic(IManagedGridNode node, EMCInterfaceLogicHost host, int
config = ConfigInventory.configStacks(AEItemKey.filter(), slots, this::onConfigRowChanged, false);
storage = ConfigInventory.storage(new StorageFilter(), slots, this::onStorageChanged);

mainNode = node.setFlags(GridFlags.REQUIRE_CHANNEL).addService(IGridTickable.class, this);
mainNode = node.setFlags(GridFlags.REQUIRE_CHANNEL)
.addService(IGridTickable.class, this)
.setIdlePowerUsage(10);
plannedWork = new GenericStack[slots];

config.useRegisteredCapacities();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gripe/_90/appliede/module/EMCModulePart.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public EMCModulePart(IPartItem<?> partItem) {
.addService(IStorageProvider.class, this)
.addService(ICraftingProvider.class, this)
.addService(IGridTickable.class, this)
.setIdlePowerUsage(5.0);
.setIdlePowerUsage(25.0);
}

@Override
Expand Down

0 comments on commit 73ef440

Please sign in to comment.