Emergency Fix (#587)

This commit is contained in:
MatthewBishop
2023-02-05 20:06:37 -05:00
committed by GitHub
parent 5db6da334d
commit 9d5d1c57ac
3 changed files with 18 additions and 1 deletions
@@ -39,6 +39,8 @@ public class DeprecatedItems {
*/
@java.lang.Deprecated
public static String getItemName(int id) {
if(id == -1)
return "Unarmed";
if(org.apollo.cache.def.ItemDefinition.lookup(id) == null || org.apollo.cache.def.ItemDefinition.lookup(id).getName() == null)
return "Unarmed";
return org.apollo.cache.def.ItemDefinition.lookup(id).getName();
@@ -149,6 +149,8 @@ public class ItemData {
"sallet", "Facemask", "Bearhead"};
public static boolean isFullBody(int itemId) {
if(itemId == -1)
return false;
String weapon = ItemDefinition.lookup(itemId).getName();
if (weapon == null) {
return false;
@@ -162,6 +164,8 @@ public class ItemData {
}
public static boolean isFullHelm(int itemId) {
if(itemId == -1)
return false;
String weapon = ItemDefinition.lookup(itemId).getName();
if (weapon == null) {
return false;
@@ -175,6 +179,8 @@ public class ItemData {
}
public static boolean isFullMask(int itemId) {
if(itemId == -1)
return false;
String weapon = ItemDefinition.lookup(itemId).getName();
if (weapon == null) {
return false;