mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-25 03:25:13 +01:00
d6bdb0486a
- Formatting - Warning about old Bukkit version - Renamed "TOWNY_CANNOT_CREATE_SHOP_HERE" to "CANNOT_CREATE_SHOP_HERE" to avoid confusion - Renamed "NOT_ENOUGH_LWC_PROTECTIONS" to "NOT_ENOUGH_PROTECTIONS" and changed its message - Fixed armour enchantments - Logging shop location - Fixed Heroes for the newest version - Removed redutant plugin object - Added dev-url for CraftBukkitUpToDate - Removed redutant plugins from softdepend - Fixed a bug when the player interacts with a shop with a sign in hand
44 lines
1.5 KiB
Java
44 lines
1.5 KiB
Java
package com.Acrobot.ChestShop.Protection.Plugins;
|
|
|
|
import com.Acrobot.ChestShop.Permission;
|
|
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.findSign2(block) != null) return true;
|
|
|
|
Chest neighbor = uBlock.findNeighbor(block);
|
|
return neighbor != null && uBlock.findSign2(neighbor.getBlock()) != null;
|
|
}
|
|
|
|
public boolean canAccess(Player player, Block block) {
|
|
String playerName = player.getName();
|
|
|
|
Sign sign = uBlock.findSign2(block);
|
|
|
|
if (sign != null) return uLongName.stripName(playerName).equals(sign.getLine(0))
|
|
|| Permission.otherName(player, sign.getLine(0));
|
|
|
|
Chest neighborChest = uBlock.findNeighbor(block);
|
|
Sign neighborSign = (neighborChest != null ? uBlock.findSign2(neighborChest.getBlock()) : null);
|
|
|
|
return neighborSign == null
|
|
|| uLongName.stripName(playerName).equals(neighborSign.getLine(0))
|
|
|| Permission.otherName(player, neighborSign.getLine(0));
|
|
}
|
|
|
|
public boolean protect(String name, Block block) {
|
|
return false;
|
|
}
|
|
}
|