Removed shulker check so shulker contents get logged as removed when destroyed

This commit is contained in:
Karl 2024-05-04 22:28:53 -04:00
parent a239b51ed1
commit ba66355786
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ public class Database extends Queue {
}
public static void containerBreakCheck(String user, Material type, Object container, ItemStack[] contents, Location location) {
if (BlockGroup.CONTAINERS.contains(type) && !BlockGroup.SHULKER_BOXES.contains(type)) {
if (BlockGroup.CONTAINERS.contains(type)) {
if (Config.getConfig(location.getWorld()).ITEM_TRANSACTIONS) {
try {
if (contents == null) {