mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-10-31 05:33:00 +00:00 
			
		
		
		
	Merge pull request #198 from SquidDev-CC/hotfix/no-reset-redstone
Do not reset redstone inputs when adding peripherals
This commit is contained in:
		| @@ -977,15 +977,11 @@ public class TurtleBrain implements ITurtleAccess | ||||
|                 if( !m_peripherals.containsKey( side ) ) | ||||
|                 { | ||||
|                     serverComputer.setPeripheral( dir, peripheral ); | ||||
|                     serverComputer.setRedstoneInput( dir, 0 ); | ||||
|                     serverComputer.setBundledRedstoneInput( dir, 0 ); | ||||
|                     m_peripherals.put( side, peripheral ); | ||||
|                 } | ||||
|                 else if( !m_peripherals.get( side ).equals( peripheral ) ) | ||||
|                 { | ||||
|                     serverComputer.setPeripheral( dir, peripheral ); | ||||
|                     serverComputer.setRedstoneInput( dir, 0 ); | ||||
|                     serverComputer.setBundledRedstoneInput( dir, 0 ); | ||||
|                     m_peripherals.remove( side ); | ||||
|                     m_peripherals.put( side, peripheral ); | ||||
|                 } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Daniel Ratcliffe
					Daniel Ratcliffe