fix: Fixes multi search (#1601)

This commit is contained in:
Kamron Batman 2023-11-18 12:37:26 -08:00 committed by GitHub
parent b5c984e5de
commit 021ebd0a88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 87 additions and 35 deletions

View file

@ -243,7 +243,7 @@ namespace Server.Multis
public static BaseBoat FindBoatAt(Point3D loc, Map map)
{
foreach (var boat in map.GetMultisAt<BaseBoat>(loc))
foreach (var boat in map.GetMultisInSector<BaseBoat>(loc))
{
if (boat.Contains(loc.X, loc.Y))
{