Hotbar deserialize fix #140
@ -70,7 +70,11 @@ public class DefaultHotbar {
|
||||
if (yapionAnyType instanceof YAPIONValue) {
|
||||
hotbar[integer] = null;
|
||||
} else {
|
||||
hotbar[integer] = (ItemStack) YAPIONDeserializer.deserialize((YAPIONObject) yapionAnyType);
|
||||
try {
|
||||
hotbar[integer] = YAPIONDeserializer.deserialize((YAPIONObject) yapionAnyType);
|
||||
} catch (Exception e) {
|
||||
hotbar[integer] = null;
|
||||
}
|
||||
}
|
||||
});
|
||||
return hotbar;
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren