1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-13 11:47:10 +00:00

Fix monitor.getTextScale() being doubled

Closes #16. The original method divided by 2 in the getter, but that
was removed in our monitor rewrite.
This commit is contained in:
SquidDev
2018-03-10 22:16:15 +00:00
parent f753513289
commit dbcae810f0

View File

@@ -243,7 +243,7 @@ public class MonitorPeripheral implements IPeripheral
case 24: case 24:
{ {
// getTextScale // getTextScale
return new Object[] { monitor.getTextScale() }; return new Object[] { monitor.getTextScale() / 2.0 };
} }
} }
return null; return null;