#W# Change: Veridia is now map1, Underworld is now map0.

This commit is contained in:
WarrentyExpired 2026-09-01 12:22:55 -04:00
parent d0437f874a
commit b9dd700ec6
2 changed files with 7 additions and 7 deletions

View file

@ -3,20 +3,20 @@
"index": 0, "index": 0,
"id": 0, "id": 0,
"fileIndex": 0, "fileIndex": 0,
"name": "Veridia", "name": "Underworld",
"width": 7168, "width": 7168,
"height": 4096, "height": 4096,
"season": 1, "season": 0,
"rules": "VeridiaRules" "rules": "VeridiaRules"
}, },
{ {
"index": 1, "index": 1,
"id": 1, "id": 1,
"fileIndex": 1, "fileIndex": 1,
"name": "Underworld", "name": "Veridia",
"width": 7168, "width": 7168,
"height": 4096, "height": 4096,
"season": 0, "season": 1,
"rules": "UnderworldRules" "rules": "UnderworldRules"
}, },
{ {

View file

@ -34,7 +34,7 @@ public enum MapRules
FreeMovement = 0x0002, // Anyone can move over anyone else without taking stamina loss FreeMovement = 0x0002, // Anyone can move over anyone else without taking stamina loss
BeneficialRestrictions = 0x0004, // Disallow performing beneficial actions on criminals/murderers BeneficialRestrictions = 0x0004, // Disallow performing beneficial actions on criminals/murderers
HarmfulRestrictions = 0x0008, // Disallow performing harmful actions on innocents HarmfulRestrictions = 0x0008, // Disallow performing harmful actions on innocents
UnderworldRules = FreeMovement | BeneficialRestrictions | HarmfulRestrictions, UnderworldRules = None,
VeridiaRules = FreeMovement VeridiaRules = FreeMovement
} }
@ -90,8 +90,8 @@ public sealed partial class Map : IComparable<Map>, ISpanFormattable, ISpanParsa
public static Map[] Maps { get; } = new Map[0x100]; public static Map[] Maps { get; } = new Map[0x100];
public static Map Veridia => Maps[0]; public static Map Underworld => Maps[0];
public static Map Underworld => Maps[1]; public static Map Veridia => Maps[1];
public static Map Ilshenar => Maps[2]; public static Map Ilshenar => Maps[2];
public static Map Malas => Maps[3]; public static Map Malas => Maps[3];
public static Map Tokuno => Maps[4]; public static Map Tokuno => Maps[4];