Skip to content

Commit

Permalink
refactor: actually move place/break vehicles to farm/build
Browse files Browse the repository at this point in the history
  • Loading branch information
WiIIiam278 committed Dec 22, 2024
1 parent 4c6c807 commit 8821e1f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions common/src/main/java/net/william278/husktowns/claim/Flag.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ public enum Defaults {
OperationType.PLAYER_DAMAGE_PERSISTENT_ENTITY,
OperationType.PLAYER_DAMAGE_ENTITY,
OperationType.ENDER_PEARL_TELEPORT,
OperationType.START_RAID
OperationType.START_RAID,
OperationType.PLACE_VEHICLE,
OperationType.BREAK_VEHICLE
),
PUBLIC_CONTAINER_ACCESS(
OperationType.CONTAINER_OPEN
Expand All @@ -190,15 +192,15 @@ public enum Defaults {
OperationType.FARM_BLOCK_BREAK,
OperationType.FARM_BLOCK_PLACE,
OperationType.FARM_BLOCK_INTERACT,
OperationType.PLAYER_DAMAGE_ENTITY
OperationType.PLAYER_DAMAGE_ENTITY,
OperationType.PLACE_VEHICLE,
OperationType.BREAK_VEHICLE
),
PUBLIC_INTERACT_ACCESS(
OperationType.BLOCK_INTERACT,
OperationType.ENTITY_INTERACT,
OperationType.REDSTONE_INTERACT,
OperationType.ENDER_PEARL_TELEPORT,
OperationType.PLACE_VEHICLE,
OperationType.BREAK_VEHICLE
OperationType.ENDER_PEARL_TELEPORT
),
PVP(
OperationType.PLAYER_DAMAGE_PLAYER
Expand Down

0 comments on commit 8821e1f

Please sign in to comment.