mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Fix null crash due to initialization order
This commit is contained in:
parent
e074728a13
commit
fb6ad2f25e
1 changed files with 3 additions and 1 deletions
|
@ -24,8 +24,10 @@ public record Appearance(ItemStack item, boolean replaceFully) {
|
||||||
);
|
);
|
||||||
|
|
||||||
public Appearance {
|
public Appearance {
|
||||||
|
if (UDataComponentTypes.APPEARANCE != null) {
|
||||||
item.remove(UDataComponentTypes.APPEARANCE);
|
item.remove(UDataComponentTypes.APPEARANCE);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public ItemStack unwrap(ItemStack stack) {
|
public ItemStack unwrap(ItemStack stack) {
|
||||||
return item().isEmpty() ? stack : item();
|
return item().isEmpty() ? stack : item();
|
||||||
|
|
Loading…
Reference in a new issue