mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2024-11-21 01:13:45 +08:00
Fixed lookups on legacy data not matching against legacy materials
This commit is contained in:
parent
5426e69fb8
commit
4daaf6cc02
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user