mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-12 14:35:35 +00:00
Corrected MINECART constant definition on Item.php
MINECART was defined as 329, where it should be 328.
This commit is contained in:
parent
355ddc469c
commit
4a79c65544
@ -316,7 +316,7 @@ class Item{
|
|||||||
const WOODEN_DOOR = 324;
|
const WOODEN_DOOR = 324;
|
||||||
const BUCKET = 325;
|
const BUCKET = 325;
|
||||||
|
|
||||||
const MINECART = 329;
|
const MINECART = 328;
|
||||||
|
|
||||||
const IRON_DOOR = 330;
|
const IRON_DOOR = 330;
|
||||||
const REDSTONE = 331;
|
const REDSTONE = 331;
|
||||||
@ -656,4 +656,4 @@ class Item{
|
|||||||
return $this->id === $item->getId() and ($checkDamage === false or $this->getDamage() === $item->getDamage());
|
return $this->id === $item->getId() and ($checkDamage === false or $this->getDamage() === $item->getDamage());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user