Create permission.java
This commit is contained in:
parent
7b9fa4ff01
commit
7b5bc3de5a
22
HubThat/permission.java
Normal file
22
HubThat/permission.java
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package HubThat;
|
||||||
|
|
||||||
|
import org.bukkit.permissions.Permission;
|
||||||
|
|
||||||
|
public class permission {
|
||||||
|
public Permission Spawn;
|
||||||
|
public Permission SetSpawn;
|
||||||
|
public Permission SetHub;
|
||||||
|
public Permission Hub;
|
||||||
|
public Permission HubDelayBypass;
|
||||||
|
public Permission SpawnDelayBypass;
|
||||||
|
public permission()
|
||||||
|
{
|
||||||
|
Spawn = new Permission ("hubthat.spawn");
|
||||||
|
SetSpawn = new Permission ("hubthat.setspawn");
|
||||||
|
SetHub = new Permission ("hubthat.sethub");
|
||||||
|
Hub = new Permission ("hubthat.hub");
|
||||||
|
SpawnDelayBypass = new Permission ("hubthat.nospawndelay");
|
||||||
|
HubDelayBypass = new Permission ("hubthat.nohubdelay");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user