aboutsummaryrefslogtreecommitdiff
path: root/src/game/Group.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Group.cpp')
-rw-r--r--src/game/Group.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/game/Group.cpp b/src/game/Group.cpp
index 24e5601abe8..c08d1236c32 100644
--- a/src/game/Group.cpp
+++ b/src/game/Group.cpp
@@ -1511,7 +1511,12 @@ void Group::ResetInstances(uint8 method, Player* SendMsgTo)
// if the map is loaded, reset it
Map *map = MapManager::Instance().FindMap(p->GetMapId(), p->GetInstanceId());
if(map && map->IsDungeon())
- isEmpty = ((InstanceMap*)map)->Reset(method);
+ {
+ if(p->CanReset())
+ isEmpty = ((InstanceMap*)map)->Reset(method);
+ else
+ isEmpty = !map->HavePlayers();
+ }
if(SendMsgTo)
{