Skip to content

Commit

Permalink
Fixes the "7500% to drop eggs and huggers" to 75%.
Browse files Browse the repository at this point in the history
  • Loading branch information
MPhonks committed Jul 13, 2023
1 parent 2625ba0 commit faf06f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/xenomorph/castes/Carrier.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
/mob/living/carbon/xenomorph/carrier/proc/update_hugger_overlays()
if(!hugger_overlays_icon)
return
if(!mutation_type == CARRIER_NORMAL)
if(mutation_type != CARRIER_NORMAL)
return

overlays -= hugger_overlays_icon
Expand Down Expand Up @@ -135,7 +135,7 @@
/mob/living/carbon/xenomorph/carrier/proc/update_eggsac_overlays()
if(!eggsac_overlays_icon)
return
if(!mutation_type == CARRIER_EGGSAC)
if(mutation_type != CARRIER_EGGSAC)
return

overlays -= eggsac_overlays_icon
Expand Down Expand Up @@ -172,7 +172,7 @@
/mob/living/carbon/xenomorph/carrier/death(cause, gibbed)
. = ..(cause, gibbed)
if(.)
var/chance = 75
var/chance = .75
if(mutation_type == CARRIER_EGGSAC)
visible_message(SPAN_XENOWARNING("[src] throes as its eggsac bursts into a mess of acid!"))
playsound(src.loc, 'sound/effects/alien_egg_burst.ogg', 25, 1)
Expand Down

0 comments on commit faf06f3

Please sign in to comment.