Fixed lookups on legacy data not matching against legacy materials

This commit is contained in:
Intelli 2024-05-07 14:18:43 -06:00
parent 5426e69fb8
commit 4daaf6cc02
1 changed files with 4 additions and 0 deletions

View File

@ -1039,6 +1039,10 @@ public class Util extends Queue {
name = BukkitAdapter.ADAPTER.parseLegacyName(name);
material = Material.getMaterial(name);
if (material == null) {
material = Material.getMaterial(name, true);
}
}
return material;