Fix ender chests not being silent
This commit is contained in:
@@ -158,7 +158,8 @@ public interface IAnySilentContainer {
|
||||
* @return true if the type is a supported container
|
||||
*/
|
||||
default boolean isAnySilentContainer(@NotNull BlockState blockState) {
|
||||
return blockState instanceof InventoryHolder holder && isAnySilentContainer(holder);
|
||||
return blockState instanceof InventoryHolder holder && isAnySilentContainer(holder)
|
||||
|| blockState instanceof EnderChest;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user