From 4a79c65544bdfdc56bbddb38813fc9d898f0479d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 24 Mar 2015 23:47:33 +0100 Subject: [PATCH] Corrected MINECART constant definition on Item.php MINECART was defined as 329, where it should be 328. --- src/pocketmine/item/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/item/Item.php b/src/pocketmine/item/Item.php index c8f85de3c5..71d081c507 100644 --- a/src/pocketmine/item/Item.php +++ b/src/pocketmine/item/Item.php @@ -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()); } -} \ No newline at end of file +}