From 7c9b62eac85b0d08c8b1cbad845ebed6fb40cea2 Mon Sep 17 00:00:00 2001 From: Treeston Date: Mon, 12 Feb 2018 02:58:23 +0100 Subject: [PATCH] DB/Quest: fix Territorial Trespass SmartScript to use proper target type (tag #20310) --- sql/updates/world/3.3.5/2018_02_12_00_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/3.3.5/2018_02_12_00_world.sql diff --git a/sql/updates/world/3.3.5/2018_02_12_00_world.sql b/sql/updates/world/3.3.5/2018_02_12_00_world.sql new file mode 100644 index 00000000000..8349cbe23c2 --- /dev/null +++ b/sql/updates/world/3.3.5/2018_02_12_00_world.sql @@ -0,0 +1,2 @@ +-- SAI target fix for Territorial Trespass (13051) +update `smart_scripts` set `target_type`=23 where (`source_type`=0 and `entryorguid`=30461 and `id`=2) or (`source_type`=9 and `entryorguid`=3046200 and `id` in (1,4));