mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-23 18:45:31 +01:00
THEN WHO WAS BLOCK?!
This commit is contained in:
parent
cd13f1ce8f
commit
45fa6d5c75
@ -8,6 +8,7 @@ import com.Acrobot.ChestShop.Permission;
|
||||
import com.Acrobot.ChestShop.Signs.ChestShopSign;
|
||||
import com.Acrobot.ChestShop.Utils.uBlock;
|
||||
import com.Acrobot.ChestShop.Utils.uName;
|
||||
import com.google.common.collect.Lists;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.block.Block;
|
||||
@ -136,6 +137,10 @@ public class SignBreak implements Listener {
|
||||
}
|
||||
|
||||
private static List<Sign> getAttachedSigns(Block block) {
|
||||
if (block == null) {
|
||||
return Lists.newArrayList();
|
||||
}
|
||||
|
||||
if (isSign(block)) {
|
||||
return Arrays.asList((Sign) block.getState());
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user