AnyChest supports Shulker Boxes, silent makes sound but doesn't animate.

I'm done for the day, got a lot of stuff to do tomorrow. Hopefully I'll iron out all of the wrinkles by the end of the day.
This commit is contained in:
Jikoo
2016-11-18 01:51:11 -05:00
parent ff683d65d1
commit 9501d1c571
43 changed files with 178 additions and 93 deletions

View File

@@ -1,17 +1,17 @@
package com.lishid.openinv.internal;
import org.bukkit.block.Block;
import org.bukkit.block.BlockState;
import org.bukkit.entity.Player;
public interface IAnySilentContainer extends IAnySilentChest {
/**
* Checks if the given Block is a container which can be unblocked or silenced.
* Checks if the given block is a container which can be unblocked or silenced.
*
* @param block the Block
* @param block the BlockState
* @return true if the Block is a supported container
*/
public boolean isAnySilentContainer(Block block);
public boolean isAnySilentContainer(BlockState block);
/**
* Opens the container at the given coordinates for the Player.