aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw1sht0l1v3 <w1sht0l1v3@gmail.com>2013-06-16 12:26:44 +0300
committerw1sht0l1v3 <w1sht0l1v3@gmail.com>2013-06-16 12:26:44 +0300
commitf0cc3b13909f0f717449a235146b9a774abdd18c (patch)
tree83ace6127dae9f49a23af1061aecc53bf212b723
parente5dbf68897a2e923b544e1df27182ceb810e141a (diff)
Fix sql naming on previous files.
Correct faction template for Nexus Drake Hatchling and initialize a variable in script.
-rw-r--r--sql/updates/world/2013_06_15_00_world_creature.sql (renamed from sql/updates/world/2013_06_15_06_world_creature.sql)0
-rw-r--r--sql/updates/world/2013_06_15_01_world_gossip.sql (renamed from sql/updates/world/2013_06_15_07_world_gossip.sql)0
-rw-r--r--sql/updates/world/2013_06_15_02_world_spelldifficulty_dbc.sql (renamed from sql/updates/world/2013_06_15_08_world_spelldifficulty_dbc.sql)0
-rw-r--r--sql/updates/world/2013_06_15_03_world_creature_template.sql (renamed from sql/updates/world/2013_06_15_09_world_creature_template.sql)0
-rw-r--r--sql/updates/world/2013_06_16_00_world_misc.sql1
-rw-r--r--src/server/scripts/Northrend/zone_borean_tundra.cpp5
6 files changed, 5 insertions, 1 deletions
diff --git a/sql/updates/world/2013_06_15_06_world_creature.sql b/sql/updates/world/2013_06_15_00_world_creature.sql
index a9db8f93583..a9db8f93583 100644
--- a/sql/updates/world/2013_06_15_06_world_creature.sql
+++ b/sql/updates/world/2013_06_15_00_world_creature.sql
diff --git a/sql/updates/world/2013_06_15_07_world_gossip.sql b/sql/updates/world/2013_06_15_01_world_gossip.sql
index 14da6211f93..14da6211f93 100644
--- a/sql/updates/world/2013_06_15_07_world_gossip.sql
+++ b/sql/updates/world/2013_06_15_01_world_gossip.sql
diff --git a/sql/updates/world/2013_06_15_08_world_spelldifficulty_dbc.sql b/sql/updates/world/2013_06_15_02_world_spelldifficulty_dbc.sql
index 3c68f4e5b33..3c68f4e5b33 100644
--- a/sql/updates/world/2013_06_15_08_world_spelldifficulty_dbc.sql
+++ b/sql/updates/world/2013_06_15_02_world_spelldifficulty_dbc.sql
diff --git a/sql/updates/world/2013_06_15_09_world_creature_template.sql b/sql/updates/world/2013_06_15_03_world_creature_template.sql
index d4673e08a15..d4673e08a15 100644
--- a/sql/updates/world/2013_06_15_09_world_creature_template.sql
+++ b/sql/updates/world/2013_06_15_03_world_creature_template.sql
diff --git a/sql/updates/world/2013_06_16_00_world_misc.sql b/sql/updates/world/2013_06_16_00_world_misc.sql
new file mode 100644
index 00000000000..49f8d4cab6e
--- /dev/null
+++ b/sql/updates/world/2013_06_16_00_world_misc.sql
@@ -0,0 +1 @@
+UPDATE `creature_template` SET `faction_A`=103,`faction_H`=103 WHERE `entry`=26127;
diff --git a/src/server/scripts/Northrend/zone_borean_tundra.cpp b/src/server/scripts/Northrend/zone_borean_tundra.cpp
index 0e59f1d517a..a4572f43563 100644
--- a/src/server/scripts/Northrend/zone_borean_tundra.cpp
+++ b/src/server/scripts/Northrend/zone_borean_tundra.cpp
@@ -812,7 +812,10 @@ public:
struct npc_nexus_drake_hatchlingAI : public FollowerAI //The spell who makes the npc follow the player is missing, also we can use FollowerAI!
{
- npc_nexus_drake_hatchlingAI(Creature* creature) : FollowerAI(creature) {}
+ npc_nexus_drake_hatchlingAI(Creature* creature) : FollowerAI(creature)
+ {
+ HarpoonerGUID = 0;
+ }
uint64 HarpoonerGUID;
bool WithRedDragonBlood;