From 63f95498cee69c199070e58712dcbc0b0ce668a4 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Wed, 23 Oct 2019 21:10:31 +0200 Subject: [PATCH] DB/Spawns: correct respawn timer of gameobjects and creatures to 5 minutes instead of 2 * since we have dynamic spawns now we no longer have to wait for the corpse to despawn which means we can now use the correct default respawn time of 5 minutes --- sql/updates/world/custom/custom_2019_10_23_00_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/custom/custom_2019_10_23_00_world.sql diff --git a/sql/updates/world/custom/custom_2019_10_23_00_world.sql b/sql/updates/world/custom/custom_2019_10_23_00_world.sql new file mode 100644 index 00000000000..ec295523a16 --- /dev/null +++ b/sql/updates/world/custom/custom_2019_10_23_00_world.sql @@ -0,0 +1,2 @@ +UPDATE `creature` SET `spawntimesecs`= 300 WHERE `spawntimesecs`= 120; +UPDATE `gameobject` SET `spawntimesecs`= 300 WHERE `spawntimesecs`= 120;