From e18c21947da06156e77457370f2ea8b8a713c950 Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Wed, 25 Aug 2021 16:01:43 +0200 Subject: [PATCH] fix(DB/GO): changes the respawn time of Ammo Crate (#7447) Decreases the respawn time of the Ammo Crate (entry: 176785, guid: 10663) from 900 s to 15 s. The Ammo Crate doesn't despawn at all in Classic WoW, but in AC we need to wait til the old crate is despawned, before spawning a new one. --- data/sql/updates/pending_db_world/rev_1629391445774422568.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1629391445774422568.sql diff --git a/data/sql/updates/pending_db_world/rev_1629391445774422568.sql b/data/sql/updates/pending_db_world/rev_1629391445774422568.sql new file mode 100644 index 000000000..146906e4a --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1629391445774422568.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629391445774422568'); + +-- Change the respawntime of the Ammo Crate to 15 s +UPDATE `gameobject` SET `spawntimesecs` = 15 WHERE (`id` = 176785) AND (`guid` IN (10663));