Added permissions option.
This commit is contained in:
parent
cbd5e3524f
commit
0a8f6b94bb
@ -28,3 +28,4 @@ max-chair-width: 3
|
||||
sign-check: false
|
||||
distance: 2
|
||||
sitting-height: 0.7
|
||||
permissions: true
|
@ -13,7 +13,7 @@ public class Chairs extends JavaPlugin {
|
||||
|
||||
public List<Material> allowedBlocks = new ArrayList<Material>();
|
||||
public Material item;
|
||||
public boolean sneaking, autorotate, signcheck;
|
||||
public boolean sneaking, autorotate, signcheck, permissions;
|
||||
public double sittingheight, distance;
|
||||
public int maxchairwidth;
|
||||
private File pluginFolder;
|
||||
@ -61,6 +61,7 @@ public class Chairs extends JavaPlugin {
|
||||
sittingheight = getConfig().getDouble("sitting-height");
|
||||
distance = getConfig().getDouble("distance");
|
||||
maxchairwidth = getConfig().getInt("max-chair-width");
|
||||
permissions = getConfig().getBoolean("permissions");
|
||||
|
||||
for (String type : getConfig().getStringList("allowed-blocks")) {
|
||||
allowedBlocks.add(Material.getMaterial(type));
|
||||
|
@ -53,8 +53,10 @@ public class EventListener implements Listener {
|
||||
}
|
||||
|
||||
// Permissions Check
|
||||
if (!player.hasPermission("chairs.sit")) {
|
||||
return;
|
||||
if (plugin.permissions) {
|
||||
if (!player.hasPermission("chairs.sit")) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Check if player is sitting.
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: Chairs
|
||||
version: 1.5a
|
||||
version: 1.5b
|
||||
description: Let players sit on stairs and slabs.
|
||||
author: spoothie
|
||||
authors: spoothie, cnaude
|
||||
main: net.spoothie.chairs.Chairs
|
||||
commands:
|
||||
chairs:
|
||||
|
Loading…
Reference in New Issue
Block a user