Add MicroWarGear21Region

Add MiniWarGear21Region
Add WarGear21Region
Add WarShip21Region
This commit is contained in:
2025-08-04 14:45:52 +02:00
parent 69f6aa27f0
commit 6c06313969
17 changed files with 689 additions and 28 deletions
@@ -27,12 +27,19 @@ import lombok.RequiredArgsConstructor;
public enum RegionType {
GLOBAL(true, false, true, ConnectionType.Global),
/**
* This should not be used by the DynamicRegionSystem
*/
NORMAL(false, true, false, ConnectionType.Closed),
SPAWN(false, false, true, ConnectionType.Closed),
SPAWN_PATH(false, false, true, ConnectionType.Path),
SPAWN_EXTENSION(false, false, false, ConnectionType.Closed),
PATH(false, false, false, ConnectionType.Path),
DRY(false, true, false, ConnectionType.Closed),
DRY_SPECIAL(false, false, false, ConnectionType.Closed),
WET(false, true, false, ConnectionType.Water),
WET_SPECIAL(false, false, false, ConnectionType.Water),
;
private final boolean global;