diff options
author | Spp- <u84280@epreinf21.(none)> | 2011-08-01 14:51:44 +0200 |
---|---|---|
committer | Spp- <u84280@epreinf21.(none)> | 2011-08-01 14:51:44 +0200 |
commit | 079f292b15eea7d5bb679d098c4675797ba14e5f (patch) | |
tree | 2162a5ad9c1726664de03d90ff4ebb9097585b60 /src/server/game/Spells/SpellScript.cpp | |
parent | acd0fc79f63f6881ead6fff2985755dd45ea3a5d (diff) |
Core: Some more missing changes from previous commit (Pass by const reference for simple objects replaced with pass by value). Also fix unintended change
Diffstat (limited to 'src/server/game/Spells/SpellScript.cpp')
-rwxr-xr-x | src/server/game/Spells/SpellScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellScript.cpp b/src/server/game/Spells/SpellScript.cpp index fb4d9afb9ad..689ab3bf8be 100755 --- a/src/server/game/Spells/SpellScript.cpp +++ b/src/server/game/Spells/SpellScript.cpp @@ -713,7 +713,7 @@ uint32 AuraScript::GetId() const return m_aura->GetId(); } -uint64 const& AuraScript::GetCasterGUID() const +unit64 const AuraScript::GetCasterGUID() const { return m_aura->GetCasterGUID(); } |