diff options
author | kaelima <kaelima@live.se> | 2012-10-07 01:31:43 +0200 |
---|---|---|
committer | kaelima <kaelima@live.se> | 2012-10-07 01:31:43 +0200 |
commit | 8c013955ace9c830efed0e353b4dcf606fb8f4f8 (patch) | |
tree | b0cbf9f3023a0882cf2a84758c1afdeaa4b6f38a /src/server/game/Spells/SpellScript.h | |
parent | bb08d429a3447dabadf456a6062252336c0c5678 (diff) |
Core/Misc: Fix some possible issues detected by static code analysis
Diffstat (limited to 'src/server/game/Spells/SpellScript.h')
-rwxr-xr-x | src/server/game/Spells/SpellScript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellScript.h b/src/server/game/Spells/SpellScript.h index a5d77806739..c8126f8aaf3 100755 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -582,8 +582,8 @@ class AuraScript : public _SpellScript class ScriptStateStore { public: - uint8 _currentScriptState; AuraApplication const* _auraApplication; + uint8 _currentScriptState; bool _defaultActionPrevented; ScriptStateStore(uint8 currentScriptState, AuraApplication const* auraApplication, bool defaultActionPrevented) : _currentScriptState(currentScriptState), _auraApplication(auraApplication), _defaultActionPrevented(defaultActionPrevented) |