Merge branch 'master' into lighting

This commit is contained in:
Mark van Alphen
2019-04-30 19:15:58 +02:00
committed by GitHub
153 changed files with 4611 additions and 3785 deletions

View File

@@ -23,13 +23,12 @@
/obj/structure/blob/factory/run_action()
if(spores.len >= max_spores)
return 0
return
if(spore_delay > world.time)
return 0
return
flick("blob_factory_glow", src)
spore_delay = world.time + 100 // 10 seconds
var/mob/living/simple_animal/hostile/blob/blobspore/BS = new/mob/living/simple_animal/hostile/blob/blobspore(src.loc, src)
BS.color = overmind.blob_reagent_datum.complementary_color
BS.overmind = overmind
overmind.blob_mobs.Add(BS)
return 0

View File

@@ -13,13 +13,9 @@
qdel(src)
/obj/structure/blob/resource/run_action()
if(resource_delay > world.time)
return 0
return
flick("blob_resource_glow", src)
resource_delay = world.time + 40 // 4 seconds
if(overmind)
overmind.add_points(1)
return 0