From cc9c363b000c94ddba12dd8d4146485d00a7fb26 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 28 May 2017 20:13:42 +0100 Subject: [PATCH] Core/Instance: Reset FAIL to NOT_STARTED on load --- src/server/game/Instances/InstanceScript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index bc75cc3a085..16eedc7e9f0 100644 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -398,7 +398,7 @@ void InstanceScript::ReadSaveDataBossStates(std::istringstream& data) { uint32 buff; data >> buff; - if (buff == IN_PROGRESS || buff == SPECIAL) + if (buff == IN_PROGRESS || buff == FAIL || buff == SPECIAL) buff = NOT_STARTED; if (buff < TO_BE_DECIDED)