Fixed items being consumed on CREATIVE mode

This commit is contained in:
Shoghi Cervantes
2013-06-07 20:02:25 +02:00
parent 6fa0ef652e
commit 9d1369bfe9
7 changed files with 30 additions and 11 deletions

View File

@ -45,7 +45,9 @@ class WheatBlock extends FlowableBlock{
if($item->getID() === DYE and $item->getMetadata() === 0x0F){ //Bonemeal
$this->meta = 0x07;
$this->level->setBlock($this, $this);
$item->count--;
if(($player->gamemode & 0x01) === 0){
$item->count--;
}
return true;
}
return false;