Skip to content

Commit

Permalink
mowwow
Browse files Browse the repository at this point in the history
  • Loading branch information
Diegoflores31 committed Jul 13, 2023
1 parent 65d124e commit 5c7125d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
var/list/tackle_counter
var/evolving = FALSE // Whether the xeno is in the process of evolving
/// The damage dealt by a xeno whenever they take damage near someone
var/acid_blood_damage = 20
var/acid_blood_damage = 25
var/nocrit = FALSE
var/deselect_timer = 0 // Much like Carbon.last_special is a short tick record to prevent accidental deselects of abilities
var/got_evolution_message = FALSE
Expand Down
3 changes: 1 addition & 2 deletions code/modules/mob/living/carbon/xenomorph/damage_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,7 @@
splash_chance -= victim.species.acid_blood_dodge_chance

if(splash_chance > 0 && prob(splash_chance)) //Success!
var/acid_damage = max(0, acid_blood_damage + (tier * 5))
if(SEND_SIGNAL(src, COMSIG_XENO_DEAL_ACID_DAMAGE, victim, acid_damage) & COMPONENT_BLOCK_DAMAGE)
if(SEND_SIGNAL(src, COMSIG_XENO_DEAL_ACID_DAMAGE, victim, acid_blood_damage) & COMPONENT_BLOCK_DAMAGE)
continue
i++
victim.visible_message(SPAN_DANGER("\The [victim] is scalded with hissing green blood!"), \
Expand Down

0 comments on commit 5c7125d

Please sign in to comment.