diff options
author | Gooyeth <migmadmu@hotmail.com> | 2018-02-15 02:00:48 -0600 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-02-15 09:00:48 +0100 |
commit | b9aec3b4d3ea7a2a98214d6a9b923b3a9675fd4d (patch) | |
tree | f6def9b86f5e5cafab732ea971ed30cb6c3426f8 /src | |
parent | f1f6976f91952806f8b2bcc23fbbef5a8075fe73 (diff) |
Core/Scripts: Add bossId in state error log. (#21421)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Instances/InstanceScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index 341e75b1402..540ea2b3c33 100644 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -353,7 +353,7 @@ bool InstanceScript::SetBossState(uint32 id, EncounterState state) if (bossInfo->state == DONE) { - TC_LOG_ERROR("map", "InstanceScript: Tried to set instance state from %s back to %s for map %u, instance id %u. Blocked!", GetBossStateName(bossInfo->state), GetBossStateName(state), instance->GetId(), instance->GetInstanceId()); + TC_LOG_ERROR("map", "InstanceScript: Tried to set instance boss %u state from %s back to %s for map %u, instance id %u. Blocked!", id, GetBossStateName(bossInfo->state), GetBossStateName(state), instance->GetId(), instance->GetInstanceId()); return false; } |