#W# Change: Trammel is now Underworld.
This commit is contained in:
parent
7cf3e68b37
commit
7a4daa801e
75 changed files with 1280 additions and 1280 deletions
|
|
@ -85,10 +85,10 @@ namespace Server.Spells
|
|||
IsVeridiaT2A,
|
||||
IsKhaldun,
|
||||
IsIlshenar,
|
||||
IsTrammelWind,
|
||||
IsUnderworldWind,
|
||||
IsVeridiaWind,
|
||||
IsVeridiaDungeon,
|
||||
IsTrammelSolenHive,
|
||||
IsUnderworldSolenHive,
|
||||
IsVeridiaSolenHive,
|
||||
IsCrystalCave,
|
||||
IsDoomGauntlet,
|
||||
|
|
@ -701,7 +701,7 @@ namespace Server.Spells
|
|||
|
||||
public static bool IsVeridiaWind(Map map, Point3D loc) => map == Map.Veridia && IsWindLoc(loc);
|
||||
|
||||
public static bool IsTrammelWind(Map map, Point3D loc) => map == Map.Trammel && IsWindLoc(loc);
|
||||
public static bool IsUnderworldWind(Map map, Point3D loc) => map == Map.Underworld && IsWindLoc(loc);
|
||||
|
||||
public static bool IsIlshenar(Map map, Point3D loc) => map == Map.Ilshenar;
|
||||
|
||||
|
|
@ -712,7 +712,7 @@ namespace Server.Spells
|
|||
return x >= 5640 && y >= 1776 && x < 5935 && y < 2039;
|
||||
}
|
||||
|
||||
public static bool IsTrammelSolenHive(Map map, Point3D loc) => map == Map.Trammel && IsSolenHiveLoc(loc);
|
||||
public static bool IsUnderworldSolenHive(Map map, Point3D loc) => map == Map.Underworld && IsSolenHiveLoc(loc);
|
||||
|
||||
public static bool IsVeridiaSolenHive(Map map, Point3D loc) => map == Map.Veridia && IsSolenHiveLoc(loc);
|
||||
|
||||
|
|
@ -727,7 +727,7 @@ namespace Server.Spells
|
|||
{
|
||||
int x = loc.X, y = loc.Y;
|
||||
|
||||
return (map == Map.Trammel || map == Map.Veridia) && x >= 5120 && y >= 2304 && x < 6144 && y < 4096;
|
||||
return (map == Map.Underworld || map == Map.Veridia) && x >= 5120 && y >= 2304 && x < 6144 && y < 4096;
|
||||
}
|
||||
|
||||
public static bool IsVeridiaDungeon(Map map, Point3D loc)
|
||||
|
|
@ -830,7 +830,7 @@ namespace Server.Spells
|
|||
{
|
||||
int x = loc.X, y = loc.Y;
|
||||
|
||||
return (map == Map.Trammel || map == Map.Veridia) && x >= 6911 && y >= 254 && x < 7167 && y < 511;
|
||||
return (map == Map.Underworld || map == Map.Veridia) && x >= 6911 && y >= 254 && x < 7167 && y < 511;
|
||||
}
|
||||
|
||||
public static bool IsMLDungeon(Map map, Point3D loc) => MondainsLegacy.IsMLRegion(Region.Find(loc, map));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue