From d693378a3a846772a1fd7a1618895c86e5901564 Mon Sep 17 00:00:00 2001 From: BeefSteak Date: Sun, 6 Nov 2022 17:52:43 +0000 Subject: [PATCH] fix(DB/creature): High Admiral "Shelly" Jorrik Rep and spawn (#13714) --- data/sql/updates/pending_db_world/repandspawn.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/repandspawn.sql diff --git a/data/sql/updates/pending_db_world/repandspawn.sql b/data/sql/updates/pending_db_world/repandspawn.sql new file mode 100644 index 000000000..fef606659 --- /dev/null +++ b/data/sql/updates/pending_db_world/repandspawn.sql @@ -0,0 +1,5 @@ +-- lots of Reputation changes +DELETE FROM `creature_onkill_reputation` WHERE `creature_id`=26081; +INSERT INTO `creature_onkill_reputation` (`creature_id`, `RewOnKillRepFaction1`, `RewOnKillRepFaction2`, `MaxStanding1`, `IsTeamAward1`, `RewOnKillRepValue1`, `MaxStanding2`, `IsTeamAward2`, `RewOnKillRepValue2`, `TeamDependent`) VALUES (26081, 87, 21, 5, 0, 5, 7, 1, -25, 0); +-- Spawn to 8 hours +UPDATE `creature` SET `spawntimesecs`=28800 WHERE `guid`=1975960 AND `id1`=26081;