aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2024-01-08 09:39:32 +0100
committerGitHub <noreply@github.com>2024-01-08 09:39:32 +0100
commit6e91e5c9db8104693608d16d1807433b97ec441e (patch)
tree3765f121628b75a033cf3cf8139b258e8f15db58
parent4dba523a7a06f2a89d22033dfc9f558d07a63e8d (diff)
Druid/Spell: Dash shoud only be usable in cat form
closes #28992 by CraftedRO
-rw-r--r--sql/updates/world/3.3.5/2024_01_08_00_world.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_01_08_00_world.sql b/sql/updates/world/3.3.5/2024_01_08_00_world.sql
new file mode 100644
index 00000000000..a70fc843865
--- /dev/null
+++ b/sql/updates/world/3.3.5/2024_01_08_00_world.sql
@@ -0,0 +1,6 @@
+-- Use Dash only when in Cat Form
+DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceGroup`=0 AND `SourceEntry` IN (1850, 9821, 33357);
+INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
+(17, 0, 1850, 0, 0, 1, 0, 768, 0, 0, 0, 172, 32, '', 'Use Dash Rank1 only when in Cat Form'),
+(17, 0, 9821, 0, 0, 1, 0, 768, 0, 0, 0, 172, 32, '', 'Use Dash Rank2 only when in Cat Form'),
+(17, 0, 33357, 0, 0, 1, 0, 768, 0, 0, 0, 172, 32, '', 'Use Dash Rank3 only when in Cat Form');