Skip to content

Commit

Permalink
Update Embryo.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 authored Sep 6, 2023
1 parent 4d786d5 commit edfffd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/mob/living/carbon/xenomorph/Embryo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
/// The ckey of any player hugger that made this embryo
var/hugger_ckey
/// The total time the person is hugged divided by stages until burst
var/per_stage_hugged_time = CONFIG_GET(number/embryo_burst_timer) / 5
var/per_stage_hugged_time = 90 //Set in Initialize due to config

/obj/item/alien_embryo/Initialize(mapload, ...)
. = ..()
per_stage_hugged_time = CONFIG_GET(number/embryo_burst_timer) / 5
if(istype(loc, /mob/living))
affected_mob = loc
affected_mob.status_flags |= XENO_HOST
Expand Down

0 comments on commit edfffd4

Please sign in to comment.