diff --git a/src/pocketmine/inventory/CraftingManager.php b/src/pocketmine/inventory/CraftingManager.php index 3a6fab8b4..b4b1e7a80 100644 --- a/src/pocketmine/inventory/CraftingManager.php +++ b/src/pocketmine/inventory/CraftingManager.php @@ -36,15 +36,14 @@ use pocketmine\utils\UUID; class CraftingManager{ /** @var CraftingRecipe[] */ - public $recipes = []; + protected $recipes = []; /** @var ShapedRecipe[][] */ protected $shapedRecipes = []; /** @var ShapelessRecipe[][] */ protected $shapelessRecipes = []; - /** @var FurnaceRecipe[] */ - public $furnaceRecipes = []; + protected $furnaceRecipes = []; private static $RECIPE_COUNT = 0;