From b9dd700ec6121629d1afa9848d5c21c9a4268baf Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Tue, 1 Sep 2026 12:22:55 -0400 Subject: [PATCH] #W# Change: Veridia is now map1, Underworld is now map0. --- Distribution/Data/map-definitions.json | 8 ++++---- Projects/Server/Maps/Map.cs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Distribution/Data/map-definitions.json b/Distribution/Data/map-definitions.json index 6ca71d020..56621c62c 100644 --- a/Distribution/Data/map-definitions.json +++ b/Distribution/Data/map-definitions.json @@ -3,20 +3,20 @@ "index": 0, "id": 0, "fileIndex": 0, - "name": "Veridia", + "name": "Underworld", "width": 7168, "height": 4096, - "season": 1, + "season": 0, "rules": "VeridiaRules" }, { "index": 1, "id": 1, "fileIndex": 1, - "name": "Underworld", + "name": "Veridia", "width": 7168, "height": 4096, - "season": 0, + "season": 1, "rules": "UnderworldRules" }, { diff --git a/Projects/Server/Maps/Map.cs b/Projects/Server/Maps/Map.cs index 7634e5f4c..622de5ff4 100644 --- a/Projects/Server/Maps/Map.cs +++ b/Projects/Server/Maps/Map.cs @@ -34,7 +34,7 @@ public enum MapRules FreeMovement = 0x0002, // Anyone can move over anyone else without taking stamina loss BeneficialRestrictions = 0x0004, // Disallow performing beneficial actions on criminals/murderers HarmfulRestrictions = 0x0008, // Disallow performing harmful actions on innocents - UnderworldRules = FreeMovement | BeneficialRestrictions | HarmfulRestrictions, + UnderworldRules = None, VeridiaRules = FreeMovement } @@ -90,8 +90,8 @@ public sealed partial class Map : IComparable, ISpanFormattable, ISpanParsa public static Map[] Maps { get; } = new Map[0x100]; - public static Map Veridia => Maps[0]; - public static Map Underworld => Maps[1]; + public static Map Underworld => Maps[0]; + public static Map Veridia => Maps[1]; public static Map Ilshenar => Maps[2]; public static Map Malas => Maps[3]; public static Map Tokuno => Maps[4];