mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +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 {
|
||||
if (UDataComponentTypes.APPEARANCE != null) {
|
||||
item.remove(UDataComponentTypes.APPEARANCE);
|
||||
}
|
||||
}
|
||||
|
||||
public ItemStack unwrap(ItemStack stack) {
|
||||
return item().isEmpty() ? stack : item();
|
||||
|
|
Loading…
Reference in a new issue