-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up protection listener, update territory access cache when nati…
…on relation changes, fix protection for armor stands and item frames
- Loading branch information
Showing
6 changed files
with
117 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
server/src/main/kotlin/net/horizonsend/ion/server/features/nations/region/AccessType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package net.horizonsend.ion.server.features.nations.region | ||
|
||
enum class AccessType { | ||
BLOCK_EDIT, /* Break/place blocks */ | ||
INVENTORY_ACCESS, /* Chest access */ | ||
ANIMAL_DAMAGE, /* Hurt passive mobs */ | ||
ENTITY_EDIT, /* Item frames, shear sheep, etc */ | ||
SWITCH_INTERACT, /* Levers, buttons, etc */ | ||
DOORS /* Doors, trapdoors */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters