Adds all my changes since Jan1

This commit is contained in:
ZeWaka
2020-02-19 19:48:29 -08:00
parent d653fde3aa
commit f5ad1c4ae4
512 changed files with 1983 additions and 1911 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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>")
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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()