aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMeji <alvaro.megias@outlook.com>2023-06-24 19:21:37 +0200
committerGitHub <noreply@github.com>2023-06-24 19:21:37 +0200
commit76d2f29e4e4c0e14a014676aafff2f8836f96ea0 (patch)
treea775a7fd68b525a73a72ec8c25f3c6edbc76fa33 /sql
parent76a84fcc868d794af439fe8441b0f820db764b87 (diff)
Core/SAI: Fixed event SMART_EVENT_WAYPOINT_ENDED (#29025)
* also moved "any" pointid to 0xFFFFFFFF for waypoint sai events: * SMART_EVENT_WAYPOINT_REACHED * SMART_EVENT_WAYPOINT_RESUMED * SMART_EVENT_WAYPOINT_PAUSED * SMART_EVENT_WAYPOINT_STOPPED * SMART_EVENT_WAYPOINT_ENDED
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_06_24_01_world.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_06_24_01_world.sql b/sql/updates/world/master/2023_06_24_01_world.sql
new file mode 100644
index 00000000000..39d8a48871c
--- /dev/null
+++ b/sql/updates/world/master/2023_06_24_01_world.sql
@@ -0,0 +1,2 @@
+--
+UPDATE `smart_scripts` SET `event_param1`=0xFFFFFFFF WHERE `event_type` IN (40,55,56,57,58) AND `event_param1`=0;