Corrected MINECART constant definition on Item.php

MINECART was defined as 329, where it should be 328.
This commit is contained in:
Alex 2015-03-24 23:47:33 +01:00
parent 355ddc469c
commit 4a79c65544

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());
}
}
}