fix(linq): Removes linq and fixes fishing error (#674)

This commit is contained in:
Kamron Batman 2021-08-04 22:24:38 -07:00 committed by GitHub
parent b112be4e1f
commit 410b18ceca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 253 additions and 62 deletions

View file

@ -116,10 +116,19 @@ namespace Server.Items
private static bool FindMarkContainer(Point3D p, Map map)
{
var eable = map.GetItemsInRange<MarkContainer>(p, 0);
var found = eable.Any(item => item.Z == p.Z);
eable.Free();
return found;
foreach (var item in eable)
{
if (item.Z == p.Z)
{
eable.Free();
return true;
break;
}
}
eable.Free();
return false;
}
private static void CreateMalasPassage(