From 40f59466db4307278948a34192f17a2a3e9ed248 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 9 Jun 2021 12:53:44 -0400 Subject: [PATCH] Fixes pets not following and who knows what else. This is a big mistype bug! --- Source/Game/Maps/GridNotifiers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Maps/GridNotifiers.cs b/Source/Game/Maps/GridNotifiers.cs index eafa2c962..1a2d55b57 100644 --- a/Source/Game/Maps/GridNotifiers.cs +++ b/Source/Game/Maps/GridNotifiers.cs @@ -604,7 +604,7 @@ namespace Game.Maps WorldObject obj = objs[i]; if (obj.IsTypeId(TypeId.Player) || obj.IsTypeId(TypeId.Corpse)) - return; + continue; if (obj.IsInWorld) obj.Update(i_timeDiff);