Skip to content

Commit

Permalink
this might remove the true damage from the buckshot. maybe.
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Mar 31, 2024
1 parent 84030ec commit 4d2c2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/ammo/bullet/shotgun.dm
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
/datum/ammo/bullet/shotgun/buckshot/special/on_hit_mob(mob/hit_mob, obj/projectile/hit_projectile)
if(isxeno(hit_mob))
var/mob/living/carbon/xenomorph/xeno = hit_mob
xeno.apply_damage(damage * 1.55, BRUTE)
xeno.apply__armored_damage(damage * 1.55, BRUTE)

Check failure on line 169 in code/datums/ammo/bullet/shotgun.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined proc: "apply__armored_damage" on /mob/living/carbon/xenomorph

//buckshot variant only used by the masterkey shotgun attachment.
/datum/ammo/bullet/shotgun/buckshot/masterkey
Expand Down Expand Up @@ -205,7 +205,7 @@
/datum/ammo/bullet/shotgun/spread/special/on_hit_mob(mob/hit_mob, obj/projectile/hit_projectile)
if(isxeno(hit_mob))
var/mob/living/carbon/xenomorph/xeno = hit_mob
xeno.apply_damage(damage * 1.55, BRUTE)
xeno.apply_armored_damage(damage * 1.55, BRUTE)

Check failure on line 208 in code/datums/ammo/bullet/shotgun.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined proc: "apply_armored_damage" on /mob/living/carbon/xenomorph

/*
8 GAUGE SHOTGUN AMMO
Expand Down

0 comments on commit 4d2c2c3

Please sign in to comment.