aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorBandyscTC <b.andysc+tc@gmail.com>2025-09-07 19:09:44 +0100
committerGitHub <noreply@github.com>2025-09-07 20:09:44 +0200
commit80437d3c79853c27ffa60b1988d1459586d18cbb (patch)
treeb4ff6a857ce206adc03a039e9df2d18a0a3e46de /sql
parentce6a1b7b913120cafc7e8825f688a9f3de9e8b6a (diff)
Core/SAI: Add storedTargetId param to summon actions (#31142)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2025_09_07_04_world.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_09_07_04_world.sql b/sql/updates/world/master/2025_09_07_04_world.sql
new file mode 100644
index 00000000000..a9a31407ef5
--- /dev/null
+++ b/sql/updates/world/master/2025_09_07_04_world.sql
@@ -0,0 +1,2 @@
+-- action_param4 used to be 'action invoker', it's been moved to flag = 4 in action_param5
+UPDATE smart_scripts SET action_param5 = action_param5 | 4, action_param4 = 0 WHERE action_type = 12 AND action_param4 > 0;