fix crucible: fixed incorrect metal score calculations

This commit is contained in:
Louis Hong
2024-10-26 12:19:16 -07:00
parent bb54c8fff7
commit 2a821017f2
2 changed files with 35 additions and 16 deletions

View File

@@ -269,7 +269,7 @@ public class FoundryOverlay3D extends Overlay
{
return;
}
String text = String.format("%d/%d quality: %d", state.getCrucibleCount(), CRUCIBLE_CAPACITY, (int)state.getCrucibleQuality());
String text = String.format("%d/%d metal score: %d", state.getCrucibleCount(), CRUCIBLE_CAPACITY, (int)state.getCrucibleQuality());
LocalPoint crucibleLoc = crucible.getLocalLocation();
crucibleLoc = new LocalPoint(crucibleLoc.getX() - 100, crucibleLoc.getY());