aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Outland
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2013-12-29 14:49:52 +0100
committerjackpoz <giacomopoz@gmail.com>2013-12-29 16:05:31 +0100
commit90c63e48188b74c89ec36f7756590017cd52ad79 (patch)
tree0c7fe8e586083aaeda95b4320b76a2914bbc7cec /src/server/scripts/Outland
parent9af36d887b92d3010e29c3d21eeab4cdc20fada5 (diff)
Scripts/Misc: Fix uninitialized values
Fix uninitialized values in scripts reported by valgrind.
Diffstat (limited to 'src/server/scripts/Outland')
-rw-r--r--src/server/scripts/Outland/zone_blades_edge_mountains.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp
index 2df2d272c3e..39a97bd4d8a 100644
--- a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp
+++ b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp
@@ -1125,7 +1125,10 @@ public:
struct npc_oscillating_frequency_scanner_master_bunnyAI : public ScriptedAI
{
- npc_oscillating_frequency_scanner_master_bunnyAI(Creature* creature) : ScriptedAI(creature) { }
+ npc_oscillating_frequency_scanner_master_bunnyAI(Creature* creature) : ScriptedAI(creature)
+ {
+ playerGuid = 0;
+ }
void Reset() OVERRIDE
{