Remove normal/undyed shulker boxes from My Items inventories.

Removes the first `_` in the `_SHULKER_BOX` matching to ensure that normal shulker boxes with ID `SHULKER_BOX` are removed from My Items as well.


Co-authored-by: Andreas Troelsen <[email protected]>
This commit is contained in:
Nesseley
2022-03-07 17:45:16 +01:00
committed by GitHub
co-authored by Andreas Troelsen
parent c88f20c46f
commit 3e2c614c18
2 changed files with 2 additions and 1 deletions
@@ -295,7 +295,7 @@ public class ArenaClass
case SHULKER_SHELL:
return true;
}
return type.name().endsWith("_SHULKER_BOX");
return type.name().endsWith("SHULKER_BOX");
}
}
}