Skip to content

Commit

Permalink
????
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Apr 5, 2024
1 parent e1e16b8 commit 51be33a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -995,10 +995,11 @@
damage_result = armor_damage_reduction(GLOB.marine_ranged, damage, armor, P.ammo.penetration)

if(damage_result <= 20)
to_chat(src,SPAN_XENONOTICE("Your armor absorbs the force of [P]!"))
to_chat(src,SPAN_XENONOTICE("Your armor reduces the power of [P]!"))
bullet_ping(P)
if(damage_result <= 10)
bullet_ping(P)
visible_message(SPAN_AVOIDHARM("[src]'s armor deflects [P]!"))
visible_message(SPAN_AVOIDHARM("[src]'s armor defeats [P]!"))
if(damage_result < 1)
damage_result = 0
if(P.ammo.sound_armor) playsound(src, P.ammo.sound_armor, 50, 1)
Expand Down

0 comments on commit 51be33a

Please sign in to comment.