Skip to content

Commit

Permalink
Lighting and admin infect
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Mar 2, 2024
1 parent f681eff commit d30b6cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/borer/borer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,13 @@ GLOBAL_LIST_EMPTY(living_borers)
density = 0
pass_flags = PASS_FLAGS_CRAWLER
mob_size = MOB_SIZE_SMALL
faction = list("creature")
faction = "Cortical"
hud_possible = list(HEALTH_HUD,STATUS_HUD)
universal_understand = TRUE

holder_type = /obj/item/holder/borer
special_mob = TRUE //shows up in own observe category
lighting_alpha = 200

var/generation = 1
var/stealthy = FALSE
Expand Down
3 changes: 3 additions & 0 deletions code/modules/borer/borer_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -875,3 +875,6 @@
if(cur_mob.client) // Send to observers
to_chat(cur_mob, SPAN_XOOC("Cortical Impulse: [src.key]([src.admin_holder.rank]): [msg]"))

/mob/living/carbon/human/proc/make_borer_host(worm_generation = 1, worm_repro = 1)
var/mob/living/carbon/cortical_borer/birthed = new /mob/living/carbon/cortical_borer(src, worm_generation, TRUE, worm_repro)
birthed.perform_infestation(src)

0 comments on commit d30b6cc

Please sign in to comment.