Skip to content

Commit

Permalink
Tweak whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar authored Feb 18, 2024
1 parent be78042 commit 821432e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,13 @@
if(current_structure.density && !current_structure.throwpass)
to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!"))
return
/// find a target in the target turf
// find a target in the target turf
if(!iscarbon(targeted_atom) || hit_target.stat == DEAD)
for(var/mob/living/carbon/carbonara in get_turf(targeted_atom))
hit_target = carbonara
if(!xeno.can_not_harm(hit_target) && hit_target.stat != DEAD)
break

if(iscarbon(hit_target) && !xeno.can_not_harm(hit_target) && hit_target.stat != DEAD)
if(targeted_atom == hit_target) //reward for a direct hit
to_chat(xeno, SPAN_XENOHIGHDANGER("We directly slam [hit_target] with our tail, throwing it back after impaling it on our tail!"))
Expand All @@ -228,6 +229,7 @@
apply_cooldown(cooldown_modifier = 0.2)
playsound(xeno, 'sound/effects/alien_tail_swipe1.ogg', 50, TRUE)
return

// FX
var/stab_direction

Expand Down

0 comments on commit 821432e

Please sign in to comment.