2011-10-23 17:30:41 +02:00
|
|
|
package com.massivecraft.factions.struct;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Permissions that you (a player) may or may not have in the territory of a certain faction.
|
2011-10-23 20:50:49 +02:00
|
|
|
* Each faction have many Rel's assigned to each one of these Perms.
|
2011-10-23 17:30:41 +02:00
|
|
|
*/
|
2011-10-23 20:50:49 +02:00
|
|
|
public enum FactionPerm
|
2011-10-23 17:30:41 +02:00
|
|
|
{
|
|
|
|
BUILD, // This player can build in the faction
|
|
|
|
PAINBUILD, // This player can build in the faction BUT will take damage each time. This is overridden by BUILD if player has both
|
|
|
|
DOOR,
|
|
|
|
WORKBENCH,
|
|
|
|
CONTAINER,
|
|
|
|
BUTTON,
|
|
|
|
LEVER,
|
|
|
|
}
|