summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index f0741a2cf..95f6964a7 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -792,8 +792,8 @@ int mob_setdelayspawn(struct mob_data *md)
if (md->spawn->delay2) //random variance
spawntime+= rand()%md->spawn->delay2;
- if (spawntime < 5000) //Min respawn time (is it needed?)
- spawntime = 5000;
+ if (spawntime < 500) //Min respawn time (is it needed?)
+ spawntime = 500;
if( md->spawn_timer != INVALID_TIMER )
delete_timer(md->spawn_timer, mob_delayspawn);