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