diff --git a/src/main/java/fr/lucreeper74/createmetallurgy/content/blocks/industrial_crucible/foundry/FoundryData.java b/src/main/java/fr/lucreeper74/createmetallurgy/content/blocks/industrial_crucible/foundry/FoundryData.java index 218c88f2..c3cc4cd3 100644 --- a/src/main/java/fr/lucreeper74/createmetallurgy/content/blocks/industrial_crucible/foundry/FoundryData.java +++ b/src/main/java/fr/lucreeper74/createmetallurgy/content/blocks/industrial_crucible/foundry/FoundryData.java @@ -130,7 +130,7 @@ public void addToGoggleTooltip(List tooltip, boolean gaugeActive, int CMLang.text("") .add(CreateLang.itemName(stackInSlot).style(ChatFormatting.GRAY)) .space() - .add(slot.processDuration >= 0 ? + .add(slot.processDuration > 0 ? progressBarComponent(duration, slot.processingTime, 9) : CMLang.text("X").style(ChatFormatting.RED).style(ChatFormatting.BOLD).component()) .forGoggles(tooltip, 1);