mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-10-31 21:52:59 +00:00 
			
		
		
		
	Fix term.getTextScale() not using the main monitor
This commit is contained in:
		| @@ -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() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 SquidDev
					SquidDev