Merge pull request #2800 from alejandroliu/patch-1

Corrected MINECART constant definition on Item.php
This commit is contained in:
Shoghi Cervantes 2015-03-25 11:03:39 +01:00
commit 6836e4fe58

View File

@ -316,7 +316,7 @@ class Item{
const WOODEN_DOOR = 324;
const BUCKET = 325;
const MINECART = 329;
const MINECART = 328;
const IRON_DOOR = 330;
const REDSTONE = 331;
@ -656,4 +656,4 @@ class Item{
return $this->id === $item->getId() and ($checkDamage === false or $this->getDamage() === $item->getDamage());
}
}
}