mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2025-02-18 02:51:19 +01:00
- Added support for Deadbolt - By default, left clicking your own sign doesn't do anything - Restricted signs now check if you've got permission ChestShop.group.groupName - Added support for stacking unstackable things - Updated Register - Changed how plugins are loaded.
39 lines
1.3 KiB
Java
39 lines
1.3 KiB
Java
package com.Acrobot.ChestShop.Protection.Plugins;
|
|
|
|
import com.Acrobot.ChestShop.Protection.Protection;
|
|
import com.Acrobot.ChestShop.Utils.uBlock;
|
|
import com.Acrobot.ChestShop.Utils.uLongName;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.block.Chest;
|
|
import org.bukkit.block.Sign;
|
|
import org.bukkit.entity.Player;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Default implements Protection {
|
|
public boolean isProtected(Block block) {
|
|
if (!(block.getState() instanceof Chest)) return false;
|
|
if (uBlock.findSign(block) != null) return true;
|
|
|
|
Chest neighbor = uBlock.findNeighbor(block);
|
|
return neighbor != null && uBlock.findSign(neighbor.getBlock()) != null;
|
|
}
|
|
|
|
public boolean canAccess(Player player, Block block) {
|
|
String playerName = player.getName();
|
|
|
|
Sign sign = uBlock.findSign(block);
|
|
if (sign != null) return uLongName.stripName(playerName).equals(sign.getLine(0));
|
|
|
|
Chest neighborChest = uBlock.findNeighbor(block);
|
|
Sign neighborSign = (neighborChest != null ? uBlock.findSign(neighborChest.getBlock()) : null);
|
|
|
|
return neighborSign != null && uLongName.stripName(playerName).equals(neighborSign.getLine(0));
|
|
}
|
|
|
|
public boolean protect(String name, Block block) {
|
|
return false;
|
|
}
|
|
}
|