From 87112f73e6b898ef4bf036a3bd3fc04d3d16334f Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Thu, 10 Sep 2026 20:10:51 -0400 Subject: [PATCH] #W# Fix: Boat warping from one side to the other is now working. --- Distribution/Data/map-definitions.json | 2 +- Projects/UOContent/Multis/Boats/BaseBoat.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Distribution/Data/map-definitions.json b/Distribution/Data/map-definitions.json index 56621c62c..24e24af76 100644 --- a/Distribution/Data/map-definitions.json +++ b/Distribution/Data/map-definitions.json @@ -14,7 +14,7 @@ "id": 1, "fileIndex": 1, "name": "Veridia", - "width": 7168, + "width": 6144, "height": 4096, "season": 1, "rules": "UnderworldRules" diff --git a/Projects/UOContent/Multis/Boats/BaseBoat.cs b/Projects/UOContent/Multis/Boats/BaseBoat.cs index 2e64a03e7..a496da6f0 100644 --- a/Projects/UOContent/Multis/Boats/BaseBoat.cs +++ b/Projects/UOContent/Multis/Boats/BaseBoat.cs @@ -50,7 +50,7 @@ namespace Server.Multis } private static readonly Rectangle2D[] BritWrap = - { new(16, 16, 5120 - 32, 4096 - 32), new(5136, 2320, 992, 1760) }; + { new(16, 16, 4276 - 32, 4096 - 32), new(5136, 2320, 992, 1760) }; private static readonly Rectangle2D[] IlshWrap = { new(16, 16, 2304 - 32, 1600 - 32) }; private static readonly Rectangle2D[] TokunoWrap = { new(16, 16, 1448 - 32, 1448 - 32) };