mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-02 23:13:21 +01:00
30 lines
701 B
Java
30 lines
701 B
Java
package com.Acrobot.ChestShop.Protection.Plugins;
|
|
|
|
import com.Acrobot.ChestShop.Protection.Protection;
|
|
import com.webkonsept.bukkit.simplechestlock.SCL;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Player;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class SCLplugin implements Protection {
|
|
public SCL scl;
|
|
|
|
public SCLplugin(SCL scl) {
|
|
this.scl = scl;
|
|
}
|
|
|
|
public boolean isProtected(Block block) {
|
|
return scl.chests.isLocked(block);
|
|
}
|
|
|
|
public boolean canAccess(Player player, Block block) {
|
|
return scl.chests.getOwner(block).equalsIgnoreCase(player.getName());
|
|
}
|
|
|
|
public boolean protect(String name, Block block) {
|
|
return false;
|
|
}
|
|
}
|