diff --git a/Source/Game/Maps/Map.cs b/Source/Game/Maps/Map.cs index 94c507105..3563bfb4d 100644 --- a/Source/Game/Maps/Map.cs +++ b/Source/Game/Maps/Map.cs @@ -1722,7 +1722,7 @@ namespace Game.Maps } // players are only allowed to enter 10 instances per hour - if (entry.IsDungeon() && !player.CheckInstanceCount(instanceIdToCheck) && !player.IsDead()) + if (!entry.GetFlags2().HasFlag(MapFlags2.IgnoreInstanceFarmLimit) && entry.IsDungeon() && !player.CheckInstanceCount(instanceIdToCheck) && !player.IsDead()) return EnterState.CannotEnterTooManyInstances; }