mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-08-30 15:36:13 +01:00
Adds all my changes since Jan1
This commit is contained in:
@@ -6,7 +6,7 @@ datum/controller/process/blob
|
||||
|
||||
setup()
|
||||
name = "Blob"
|
||||
schedule_interval = 31 // 3.1 seconds
|
||||
schedule_interval = 31 // 3.1 SECOND
|
||||
|
||||
detailed_count = new
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ datum/controller/process/fluid_turfs
|
||||
|
||||
src.processing_fluid_turfs = global.processing_fluid_turfs
|
||||
|
||||
SPAWN_DBG(200)
|
||||
SPAWN_DBG(20 SECONDS)
|
||||
if (clients.len >= OSHAN_LIGHT_OVERLOAD)
|
||||
do_light_gen = 0
|
||||
|
||||
|
||||
@@ -13,14 +13,14 @@ datum/controller/process/kudzu
|
||||
doWork()
|
||||
if (count == 7)
|
||||
count = 0
|
||||
//make kudzu men converting cacoons for all dead humans
|
||||
//make kudzu men converting cocoons for all dead humans
|
||||
for (var/mob/M in mobs)
|
||||
//dnr I dunno !((M && M.mind) || !(M && M.mind && M.mind.dnr))
|
||||
if (M.stat == 2 && isturf(M.loc) && M.loc.temp_flags & HAS_KUDZU && ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if (istype(H.mutantrace, /datum/mutantrace/kudzu))
|
||||
continue
|
||||
//make cacoon
|
||||
//make cocoon
|
||||
var/obj/icecube/kudzu/cube = new /obj/icecube/kudzu(get_turf(M), M)
|
||||
M.set_loc(cube)
|
||||
cube.visible_message("<span style=\"color:red\"><B>[M] is covered by the vines!</span>")
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
datum/controller/process/mob_ui
|
||||
setup()
|
||||
name = "Mob UI"
|
||||
schedule_interval = 1 SECONDS
|
||||
schedule_interval = 1 SECOND
|
||||
|
||||
doWork()
|
||||
for(var/mob/M in mobs)
|
||||
|
||||
@@ -8,7 +8,7 @@ datum/controller/process/ticker
|
||||
ticker = new /datum/controller/gameticker()
|
||||
|
||||
// start the pregame process
|
||||
SPAWN_DBG(1)
|
||||
SPAWN_DBG(1 DECI SECOND)
|
||||
ticker.pregame()
|
||||
doWork()
|
||||
ticker.process()
|
||||
Reference in New Issue
Block a user