Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stabu-dev committed Dec 30, 2022
1 parent bffbcfd commit 80e6168
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ol/world/blocks/crafting/MultiCrafter.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ public static StatValue crafts(Seq<MultiCrafter.Craft> crafts) {

if(craft.consumePower > 0) {
input.image(Icon.power).color(Pal.power);
input.add("-" + (craft.consumePower * 60f));
input.add("-" + (craft.consumePower * 60f)
).pad(8);
}

if(craft.pressureConsume > 0){
Expand Down

0 comments on commit 80e6168

Please sign in to comment.