Merge pull request #1912 from Intyre/feature/block

EndPortal, EndStone, MonsterSpawner, Mycelium and Podzol blocks added
This commit is contained in:
Shoghi Cervantes
2014-08-21 19:34:51 +02:00
7 changed files with 239 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ class Item{
const OBSIDIAN = 49;
const TORCH = 50;
const FIRE = 51;
const MONSTER_SPAWNER = 52;
const WOOD_STAIRS = 53;
const WOODEN_STAIRS = 53;
const OAK_WOOD_STAIRS = 53;
@@ -164,12 +164,16 @@ class Item{
const FENCE_GATE = 107;
const BRICK_STAIRS = 108;
const STONE_BRICK_STAIRS = 109;
const MYCELIUM = 110;
const NETHER_BRICKS = 112;
const NETHER_BRICK_BLOCK = 112;
const NETHER_BRICKS_STAIRS = 114;
const END_PORTAL = 120;
const END_STONE = 121;
const SANDSTONE_STAIRS = 128;
const EMERALD_ORE = 129;
@@ -216,6 +220,7 @@ class Item{
const HARDENED_CLAY = 172;
const COAL_BLOCK = 173;
const PODZOL = 243;
const BEETROOT_BLOCK = 244;
const STONECUTTER = 245;
const GLOWING_OBSIDIAN = 246;
@@ -620,4 +625,4 @@ class Item{
return $this->id === $item->getID() and ($checkDamage === false or $this->getDamage() === $item->getDamage());
}
}
}