Skip to content

Commit c77fb0e

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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 "s2827"
3+
#define SD2_REVISION_NR "s2828"
44
#endif // __SD2_REVISION_NR_H__

0 commit comments

Comments
 (0)