mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 11:10:29 +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:
parent
f753513289
commit
dbcae810f0
@ -243,7 +243,7 @@ public class MonitorPeripheral implements IPeripheral
|
||||
case 24:
|
||||
{
|
||||
// getTextScale
|
||||
return new Object[] { monitor.getTextScale() };
|
||||
return new Object[] { monitor.getTextScale() / 2.0 };
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user