mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-15 05:45:05 +00:00
ShapedRecipe: remove a curly-brace array-access that nothing noticed
This commit is contained in:
@ -164,7 +164,7 @@ class ShapedRecipe implements CraftingRecipe{
|
||||
}
|
||||
|
||||
public function getIngredient(int $x, int $y) : Item{
|
||||
$exists = $this->ingredientList[$this->shape[$y]{$x}] ?? null;
|
||||
$exists = $this->ingredientList[$this->shape[$y][$x]] ?? null;
|
||||
return $exists !== null ? clone $exists : ItemFactory::get(Item::AIR, 0, 0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user