diff options
author | Spp <spp@jorge.gr> | 2012-11-23 15:13:00 +0100 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2012-11-23 15:13:00 +0100 |
commit | 86594d4b7ace576c8022cea7f42538380025a1b0 (patch) | |
tree | 9ff437f50d8db39afd847743b012fe3bd985e1da | |
parent | a79065b12e3743d7ec06926324496c0fae9ea9f7 (diff) |
Fix logic error in 81606e5 (Fixes orange ooze in Professor putricide)
Closes #8418
-rwxr-xr-x | src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp index a950a74e59c..007adb4cc56 100755 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -1007,7 +1007,7 @@ class spell_putricide_unstable_experiment : public SpellScriptLoader Creature* creature = GetCaster()->ToCreature(); uint32 stage = creature->AI()->GetData(DATA_EXPERIMENT_STAGE); - creature->AI()->SetData(DATA_EXPERIMENT_STAGE, !stage); + creature->AI()->SetData(DATA_EXPERIMENT_STAGE, stage ^ true); Creature* target = NULL; std::list<Creature*> creList; |