comment fix

This commit is contained in:
DaSH 2026-04-28 12:45:33 +02:00
parent 3e9b104dbc
commit a4a6647502

View File

@ -113,7 +113,7 @@ public class RenderRBMKNumitron extends TileEntitySpecialRenderer {
}
//** Fill up to 7 characters */
//** For negative numbers when zeroes are added: put the zeroes between the - and hte number */
//** For negative numbers when zeroes are added: put the zeroes between the '-' and the number */
if ((value.length() < 7) && (value.charAt(0) == '-') && (unit.no_leading_zeroes == false)) {
value = value.substring(1);
while(value.length() < 6) value = "0" + value;