#W# Change: Felucca is now Veridia

This commit is contained in:
WarrentyExpired 2026-08-31 18:00:19 -04:00
parent d7fb1b1c03
commit 7cf3e68b37
87 changed files with 1279 additions and 1279 deletions

View file

@ -25,7 +25,7 @@ namespace Server.Systems.JailSystem;
public class JailSystem : GenericPersistence
{
// Jail locations (modify if using custom maps)
// felucca void
// Veridia void
private static readonly Point3D[] JailLocations =
[
new(5276, 1164, 0),
@ -41,7 +41,7 @@ public class JailSystem : GenericPersistence
];
// Jail map, change this for custom maps
public static readonly Map JailMap = Map.Felucca;
public static readonly Map JailMap = Map.Veridia;
private static readonly JailRecord EmptyRecord = new();
private static readonly HashSet<PlayerMobile> CurrentlyBeingJailed = [];
@ -54,7 +54,7 @@ public class JailSystem : GenericPersistence
// Release location, change this for custom maps
private static readonly Point3D ReleaseLocation = new(1444, 1697, 10); // Britain Bank
public static readonly Map ReleaseMap = Map.Felucca;
public static readonly Map ReleaseMap = Map.Veridia;
private static JailSystem Instance;