Skip to content

Commit

Permalink
Update [5399] ..
Browse files Browse the repository at this point in the history
Reverted to original
Reason for revering is simple. Using `OR = -2` will never work because other faction quest will never be completed, so aura will be always present on Player.
Checking both `-1` will fail after 1 quest (from your faction) rewarded & that is what we want here.
  • Loading branch information
Grz3s committed Nov 3, 2024
1 parent f4370f5 commit d46577d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Updates/5399_ShadowVault_Phase1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DELETE FROM conditions WHERE condition_entry BETWEEN 20753 AND 20755;
INSERT INTO conditions (condition_entry, type, value1, value2, value3, value4, flags) VALUES
(20753,8,12896,0,0,0,1),
(20754,8,12897,0,0,0,1),
(20755,-2,20754,20753,0,0,0);
(20755,-1,20754,20753,0,0,0);

-- Vile 30216
UPDATE creature SET position_x = 8415.534, position_y = 2712.3645, position_z = 655.1002, movementtype = 4, spawndist = 0 WHERE id = 30216;
Expand Down

0 comments on commit d46577d

Please sign in to comment.