This commit is contained in:
Dylan K. Taylor 2022-12-05 14:47:44 +00:00
parent 142ccc7e87
commit 18c2e90574
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
2 changed files with 8 additions and 2 deletions

View File

@ -52,4 +52,4 @@ final class TagWildcardRecipeIngredient implements RecipeIngredient{
public function __toString() : string{
return "TagWildcardRecipeIngredient($this->tagName)";
}
}
}

View File

@ -28,6 +28,12 @@ use pocketmine\utils\AssumptionFailedError;
use pocketmine\utils\SingletonTrait;
use pocketmine\utils\Utils;
use Symfony\Component\Filesystem\Path;
use function array_keys;
use function file_get_contents;
use function gettype;
use function is_array;
use function is_string;
use function json_decode;
use const pocketmine\BEDROCK_DATA_PATH;
/**
@ -99,4 +105,4 @@ final class ItemTagToIdMap{
public function addIdToTag(string $tag, string $id) : void{
$this->tagToIdsMap[$tag][$id] = true;
}
}
}