Skip to content

Commit

Permalink
Update src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacit…
Browse files Browse the repository at this point in the history
…or.java

Co-authored-by: NotAPenguin <[email protected]>
  • Loading branch information
ReignOfFROZE and NotAPenguin0 authored Jun 3, 2024
1 parent ec5a76d commit 65d76e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ public void addUIWidgets(ModularWindow.Builder builder, UIBuildContext buildCont
.widget(new FakeSyncWidget.BooleanSyncer(() -> wireless_mode, val -> wireless_mode = val))
.widget(new FakeSyncWidget.BooleanSyncer(this::canUseWireless, val -> canUseWireless = val))
.widget(new ButtonWidget().setOnClick((clickData, widget) -> {
if (wireless_mode && canUseWireless && !balanced) {
if (mMachine && wireless_mode && canUseWireless && !balanced) {
counter = rebalance();
}
})
Expand Down

0 comments on commit 65d76e9

Please sign in to comment.