Added nether reactor block to classes

This commit is contained in:
Shoghi Cervantes 2014-06-26 12:09:38 +02:00
parent 7067c09228
commit 401d7342dd

View File

@ -351,7 +351,6 @@ abstract class Block extends Position implements Metadatable{
[Item::CHEST, 0], [Item::CHEST, 0],
[Item::FURNACE, 0], [Item::FURNACE, 0],
//TODO: End Portal //TODO: End Portal
//TODO: End Portal (filled)
[Item::DANDELION, 0], [Item::DANDELION, 0],
[Item::POPPY, 0], [Item::POPPY, 0],
//TODO: blue orchid //TODO: blue orchid
@ -649,6 +648,7 @@ abstract class Block extends Position implements Metadatable{
self::BEETROOT_BLOCK => new Beetroot(), self::BEETROOT_BLOCK => new Beetroot(),
self::STONECUTTER => new Stonecutter(), self::STONECUTTER => new Stonecutter(),
self::GLOWING_OBSIDIAN => new GlowingObsidian(), self::GLOWING_OBSIDIAN => new GlowingObsidian(),
self::NETHER_REACTOR => new NetherReactor(),
); );
} }
} }