mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-16 11:58:00 +00:00
Fixed gh#332
Crafting with buckets (milk) returns the bucket
This commit is contained in:
@@ -842,8 +842,11 @@ class Player{
|
||||
AchievementAPI::grantAchievement($this, "diamond");
|
||||
break;
|
||||
case CAKE:
|
||||
for($i; $i <= 2; $i++){
|
||||
$this->addItem(BUCKET, 0, 1, false);
|
||||
if($this->hasSpace(AIR, 0, 3) == true){
|
||||
$this->addItem(BUCKET, 0, 3, false);
|
||||
}
|
||||
else{
|
||||
$this->server->api->entity->drop(new Position($this->entity->x - 0.5, $this->entity->y, $this->entity->z - 0.5, $this->level), BlockAPI::getItem(BUCKET, 0, 3));
|
||||
}
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user