diff --git a/src/game/Group.cpp b/src/game/Group.cpp index 12e416d0b..2513f0ac3 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -1504,7 +1504,7 @@ void Group::ResetInstances(uint8 method, Player* SendMsgTo) bool isEmpty = true; // if the map is loaded, reset it Map *map = MapManager::Instance().FindMap(p->GetMapId(), p->GetInstanceId()); - if(map && map->IsDungeon()) + if(map && map->IsDungeon() && !(method == INSTANCE_RESET_GROUP_DISBAND && !p->CanReset())) isEmpty = ((InstanceMap*)map)->Reset(method); if(SendMsgTo) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d8c5088ea..9fe4a39d3 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8107" + #define REVISION_NR "8108" #endif // __REVISION_NR_H__