Skip to content

Commit ba6a8ef

Browse files
committed
[z2727] Fix Skeram infinite loot
(based on commit SD2[3093] - 9ef9b5f) Signed-off-by: Xfurry <xfurry@scriptdev2.com> (based on commit SD2-TBC[s2828] - c77fb0e) Signed-off-by: Xfurry <xfurry@scriptdev2.com>
1 parent 7c92e40 commit ba6a8ef

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/kalimdor/temple_of_ahnqiraj/boss_skeram.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ struct boss_skeramAI : public ScriptedAI
102102
}
103103
// Else despawn to avoid looting
104104
else
105-
m_creature->ForcedDespawn();
105+
m_creature->ForcedDespawn(1);
106106
}
107107

108108
void Aggro(Unit* /*pWho*/) override

sd2_revision_nr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef __SD2_REVISION_NR_H__
22
#define __SD2_REVISION_NR_H__
3-
#define SD2_REVISION_NR "z2726"
3+
#define SD2_REVISION_NR "z2727"
44
#endif // __SD2_REVISION_NR_H__

0 commit comments

Comments
 (0)