Core/Instance: Reset FAIL to NOT_STARTED on load

This commit is contained in:
Ryan
2017-05-28 20:13:42 +01:00
parent b1de58c7f8
commit cc9c363b00

View File

@@ -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)