Skip to content

Commit fe6f03e

Browse files
committed
[2298] Fix Typos and a spell cast for boss Gal'darah, Gundrak
1 parent 4035375 commit fe6f03e

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

scripts/northrend/gundrak/boss_galdarah.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ enum
6161
SPELL_IMPALING_CHARGE = 54956,
6262
SPELL_IMPALING_CHARGE_H = 59827,
6363
SPELL_STOMP = 55292,
64-
SPELL_STOMP_H = 59826,
64+
SPELL_STOMP_H = 59829,
6565
};
6666

6767
/*######
@@ -137,7 +137,7 @@ struct MANGOS_DLL_DECL boss_galdarahAI : public ScriptedAI
137137
if (pSummoned->GetEntry() == NPC_RHINO_SPIRIT)
138138
{
139139
if (Unit* pTarget = m_creature->SelectAttackingTarget(ATTACKING_TARGET_RANDOM, 1))
140-
pSummoned->CastSpell(pTarget, m_bIsRegularMode ? SPELL_STAMPEDE_RHINO : SPELL_STAMPEDE_RHINO_H, false);
140+
pSummoned->CastSpell(pTarget, m_bIsRegularMode ? SPELL_STAMPEDE_RHINO : SPELL_STAMPEDE_RHINO_H, false, NULL, NULL, m_creature->GetObjectGuid());
141141
}
142142
}
143143

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

sql/scriptdev2_script_full.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3146,7 +3146,7 @@ INSERT INTO script_texts (entry,content_default,sound,type,language,emote,commen
31463146
(-1604028,'Even the mighty... can fall.',14439,1,0,0,'galdarah SAY_DEATH'),
31473147

31483148
(-1604029,'%s transforms into a Mammoth!',14724,2,0,0,'moorabi EMOTE_TRANSFORMED'),
3149-
(-1604030,'%N is impaled!',0,3,0,0,'EMOTE_IMPALED');
3149+
(-1604030,'$N is impaled!',0,3,0,0,'EMOTE_IMPALED');
31503150

31513151

31523152
-- -1 608 000 VIOLET HOLD

sql/updates/r2298_scriptdev2.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
UPDATE script_texts SET content_default='$N is impaled!' WHERE entry=-1604030;

0 commit comments

Comments
 (0)