#W# Change: Trammel is now Underworld.

This commit is contained in:
WarrentyExpired 2026-08-31 18:29:10 -04:00
parent 7cf3e68b37
commit 7a4daa801e
75 changed files with 1280 additions and 1280 deletions

View file

@ -10,7 +10,7 @@ namespace Server.Tests.Maps
{
[Theory]
[InlineData(MapSelectionFlags.Felucca, "Felucca")]
[InlineData(MapSelectionFlags.Felucca | MapSelectionFlags.Trammel, "Felucca, Trammel")]
[InlineData(MapSelectionFlags.Felucca | MapSelectionFlags.Underworld, "Felucca, Underworld")]
public void TestCommaSeparatedList(MapSelectionFlags flags, string expected)
{
Assert.Equal(expected, flags.ToCommaDelimitedString());

View file

@ -13,8 +13,8 @@ public sealed class MapPatches : Packet
Stream.Write(Map.Felucca.Tiles.Patch.StaticBlocks);
Stream.Write(Map.Felucca.Tiles.Patch.LandBlocks);
Stream.Write(Map.Trammel.Tiles.Patch.StaticBlocks);
Stream.Write(Map.Trammel.Tiles.Patch.LandBlocks);
Stream.Write(Map.Underworld.Tiles.Patch.StaticBlocks);
Stream.Write(Map.Underworld.Tiles.Patch.LandBlocks);
Stream.Write(Map.Ilshenar.Tiles.Patch.StaticBlocks);
Stream.Write(Map.Ilshenar.Tiles.Patch.LandBlocks);
@ -40,4 +40,4 @@ public sealed class MapChange : Packet
Stream.Write((short)0x08);
Stream.Write((byte)map.MapID);
}
}
}