mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-29 14:05:25 +01:00
Lets check for null name
This commit is contained in:
parent
d8eaa14b4f
commit
1a6f1d719c
@ -66,10 +66,12 @@ public class ItemManager {
|
|||||||
}
|
}
|
||||||
byBukkitName.put(one.name().toLowerCase().replace("_", "").replace(" ", ""), cm);
|
byBukkitName.put(one.name().toLowerCase().replace("_", "").replace(" ", ""), cm);
|
||||||
|
|
||||||
String n = mojangName.toLowerCase().replace("_", "").replace(" ", "").replace("minecraft:", "");
|
if (mojangName != null) {
|
||||||
|
String n = mojangName.toLowerCase().replace("_", "").replace(" ", "").replace("minecraft:", "");
|
||||||
if (!byMojangName.containsKey(n))
|
if (!byMojangName.containsKey(n))
|
||||||
byMojangName.put(n, cm);
|
byMojangName.put(n, cm);
|
||||||
|
}
|
||||||
|
|
||||||
byMaterial.put(one, cm);
|
byMaterial.put(one, cm);
|
||||||
if (!byId.containsKey(id))
|
if (!byId.containsKey(id))
|
||||||
byId.put(id, cm);
|
byId.put(id, cm);
|
||||||
@ -2297,7 +2299,7 @@ public class ItemManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static SlabType checkSlab(Block block) throws NoClassDefFoundError {
|
private static SlabType checkSlab(Block block) {
|
||||||
if (!CMIMaterial.isSlab(block.getType()))
|
if (!CMIMaterial.isSlab(block.getType()))
|
||||||
return SlabType.NOTSLAB;
|
return SlabType.NOTSLAB;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user