mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 11:10:29 +00:00
Fix term.getTextScale() not using the main monitor
This commit is contained in:
parent
56b1cb4521
commit
aa447ec101
@ -290,7 +290,8 @@ public class TileMonitor extends TilePeripheralBase
|
||||
|
||||
public double getTextScale()
|
||||
{
|
||||
return m_textScale * 0.5;
|
||||
TileMonitor origin = getOrigin();
|
||||
return (origin == null ? m_textScale : origin.m_textScale) * 0.5;
|
||||
}
|
||||
|
||||
private void rebuildTerminal()
|
||||
|
Loading…
Reference in New Issue
Block a user