aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2024-10-10 12:34:40 +0200
committerGitHub <noreply@github.com>2024-10-10 12:34:40 +0200
commitc3bbadef486563674471db1e5f3d448944b55b64 (patch)
tree553785511d9fd17106ae8b681fc60c495aa0b5b7
parentd699b5069b0dfb2a539b1914b35fed7c9efbf483 (diff)
DB/Creature: Replace wrong fixed orientation value with default NULL
closes #30332 by CraftedRO
-rw-r--r--sql/updates/world/3.3.5/2024_10_10_11_world.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_10_10_11_world.sql b/sql/updates/world/3.3.5/2024_10_10_11_world.sql
new file mode 100644
index 00000000000..883d4f7fce6
--- /dev/null
+++ b/sql/updates/world/3.3.5/2024_10_10_11_world.sql
@@ -0,0 +1,2 @@
+-- Replace wrong 100 and 255 fixed orientation value with default NULL
+UPDATE `waypoint_data` SET `orientation`=NULL WHERE `orientation`>7;