From 7e4839f6577b7c766898f95df457518f00ed7937 Mon Sep 17 00:00:00 2001 From: Tr1v1an <89851300+Tr1v1an@users.noreply.github.com> Date: Sun, 5 Sep 2021 12:00:54 +0200 Subject: [PATCH] fix(DB/Creature): Spawntimer fix GUID 36519 (#7669) * fix(DB/Creature): Spawntimer fix GUID 36519 Fixed the spawntimer of Gatekeeper Rageroar (GUID: 36519) to 37800 according to Blizzlike documentation. This translates to 10.5 hours. * Updating change after comments Updating the PR based on comments from Azcobu. * Changing and to AND --- data/sql/updates/pending_db_world/rev_1630423020825292612.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630423020825292612.sql diff --git a/data/sql/updates/pending_db_world/rev_1630423020825292612.sql b/data/sql/updates/pending_db_world/rev_1630423020825292612.sql new file mode 100644 index 000000000..60cdb26a1 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630423020825292612.sql @@ -0,0 +1,3 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630423020825292612'); + +UPDATE `creature` SET `spawntimesecs` = 37800 WHERE `guid` = 36519 AND `id`= 6651;