From 80221cce255bfabd4f4447c96771bd8f1a218922 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 30 Dec 2013 18:23:00 -0500 Subject: [PATCH] giant spiders scale to player pop * 2 --- code/modules/events/tgevents/spider_infestation.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/events/tgevents/spider_infestation.dm b/code/modules/events/tgevents/spider_infestation.dm index 72384669a81..52e28ab41fa 100644 --- a/code/modules/events/tgevents/spider_infestation.dm +++ b/code/modules/events/tgevents/spider_infestation.dm @@ -8,7 +8,7 @@ /datum/event/spider_infestation/setup() announceWhen = rand(announceWhen, announceWhen + 50) - spawncount = rand(5, 8) + spawncount = num_players() * 2 sent_spiders_to_station = 1 /datum/event/spider_infestation/announce() @@ -17,6 +17,7 @@ /datum/event/spider_infestation/start() + var/list/vents = list() for(var/obj/machinery/atmospherics/unary/vent_pump/temp_vent in world) if(temp_vent.loc.z == 1 && !temp_vent.welded && temp_vent.network)