Skip to content

Commit

Permalink
target fix / girder fix
Browse files Browse the repository at this point in the history
  • Loading branch information
InsaneRed committed Feb 20, 2024
1 parent d8872db commit 090f727
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
var/activation_delay_aoe = 1 SECONDS
var/base_damage_aoe = 15
var/damage_scale_aoe = 10
var/activation_delay = 0.5 SECONDS
//SINGLE TARGET
var/activation_delay = 0.5 SECONDS
var/base_damage = 25
var/damage_scale = 10
var/targeting = SINGLETARGETGUT
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/attack_alien.dm
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@
return XENO_ATTACK_ACTION

/obj/structure/girder/attack_alien(mob/living/carbon/xenomorph/M)
if((M.caste && M.caste.tier < 2 && !isqueen(M)) || unacidable)
if((M.caste && M.caste.tier < 2 && M.claw_type < CLAW_TYPE_VERY_SHARP) || unacidable)
to_chat(M, SPAN_WARNING("Our claws aren't sharp enough to damage [src]."))
return XENO_NO_DELAY_ACTION
M.animation_attack_on(src)
Expand Down

0 comments on commit 090f727

Please sign in to comment.