aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaelima <kaelima@live.se>2012-02-24 23:10:12 +0100
committerkaelima <kaelima@live.se>2012-02-24 23:10:12 +0100
commitbc151a0453a7d80a30a5480c2a758f28ca7aaa8b (patch)
tree8a0a24fcc9a518093284c573c97409b38ddf3273
parentc7ddb428b30fe23fb0a7e208e45c559e9f1c730f (diff)
Scripts/Zalazane's Fall: Fixed a logical mistake from last commit
-rw-r--r--src/server/scripts/Kalimdor/durotar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Kalimdor/durotar.cpp b/src/server/scripts/Kalimdor/durotar.cpp
index 726904e745f..ea3a093990e 100644
--- a/src/server/scripts/Kalimdor/durotar.cpp
+++ b/src/server/scripts/Kalimdor/durotar.cpp
@@ -241,7 +241,7 @@ class npc_tiger_matriarch : public CreatureScript
void IsSummonedBy(Unit* summoner)
{
- if (summoner->GetTypeId() != TYPEID_PLAYER && summoner->GetVehicle())
+ if (summoner->GetTypeId() != TYPEID_PLAYER || !summoner->GetVehicle())
return;
_tigerGuid = summoner->GetVehicle()->GetBase()->GetGUID();