aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraftedRO <CraftedRO@users.noreply.github.com>2022-11-08 19:47:33 +0100
committerKillyana <morphone1@gmail.com>2022-11-08 19:47:33 +0100
commit37d8b6d33b58a136319a052db50900db3d798919 (patch)
treea866295152d506292fd68342020d83dd04f890a5
parent556354c1fdae1e16dae9755d2bc2bf05cc722461 (diff)
Spell/Conditions: Hand of Sacrifice can't be casted on targets with Divine Sacrifice
Closes #28502
-rw-r--r--sql/updates/world/3.3.5/2022_11_08_02_world.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2022_11_08_02_world.sql b/sql/updates/world/3.3.5/2022_11_08_02_world.sql
new file mode 100644
index 00000000000..d36146a33a0
--- /dev/null
+++ b/sql/updates/world/3.3.5/2022_11_08_02_world.sql
@@ -0,0 +1,4 @@
+-- Hand of Sacrifice can't be casted on targets with Divine Sacrifice
+DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=6940;
+INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `NegativeCondition`, `ErrorType`, `Comment`) VALUES
+(17, 6940, 1, 1, 64205, 1, 173, 'Cant use Hand of Sacrifice while Divine Sacrifice is active');