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
This commit is contained in:
Ovahlord
2019-10-23 21:10:31 +02:00
parent 76ad4b1080
commit 63f95498ce

View File

@@ -0,0 +1,2 @@
UPDATE `creature` SET `spawntimesecs`= 300 WHERE `spawntimesecs`= 120;
UPDATE `gameobject` SET `spawntimesecs`= 300 WHERE `spawntimesecs`= 120;