fixed redstone i/o block getting derped when upgrading from 1.1

This commit is contained in:
Florian Nücke 2014-01-31 16:23:40 +01:00
parent 636f4df433
commit 847b4e820c

View File

@ -78,6 +78,7 @@ object Blocks {
keyboard = new Keyboard(blockSpecial) keyboard = new Keyboard(blockSpecial)
powerDistributor = new PowerDistributor(blockSimple) powerDistributor = new PowerDistributor(blockSimple)
powerConverter = new PowerConverter(blockSimple) powerConverter = new PowerConverter(blockSimple)
redstone = new Redstone(blockSimpleWithRedstone)
robotAfterimage = new RobotAfterimage(blockSpecial) robotAfterimage = new RobotAfterimage(blockSpecial)
robotProxy = new RobotProxy(blockSpecialWithRedstone) robotProxy = new RobotProxy(blockSpecialWithRedstone)
router = new Router(blockSimple) router = new Router(blockSimple)
@ -91,8 +92,6 @@ object Blocks {
blockSimple.subBlocks += screen2 blockSimple.subBlocks += screen2
blockSimple.subBlocks += screen3 blockSimple.subBlocks += screen3
redstone = new Redstone(blockSimpleWithRedstone)
// v1.2.0 // v1.2.0
serverRack = new Rack(blockSpecialWithRedstone) serverRack = new Rack(blockSpecialWithRedstone)