Skip to content

Commit

Permalink
Fixes three instances of a negative accuracy bonus (#225)
Browse files Browse the repository at this point in the history
Co-authored-by: AmoryBlaine <[email protected]>
Co-authored-by: AndroBetel <[email protected]>
  • Loading branch information
3 people committed Jun 2, 2024
1 parent 203b171 commit 48aca9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/ammo/bullet/pistol.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/datum/ammo/bullet/pistol
name = "pistol bullet"
headshot_state = HEADSHOT_OVERLAY_MEDIUM
accuracy = -HIT_ACCURACY_TIER_3
accuracy = HIT_ACCURACY_TIER_3
accuracy_var_low = PROJECTILE_VARIANCE_TIER_6
damage = 40
penetration= ARMOR_PENETRATION_TIER_2
Expand Down Expand Up @@ -98,7 +98,7 @@
/datum/ammo/bullet/pistol/heavy
name = "heavy pistol bullet"
headshot_state = HEADSHOT_OVERLAY_MEDIUM
accuracy = -HIT_ACCURACY_TIER_3
accuracy = HIT_ACCURACY_TIER_3
accuracy_var_low = PROJECTILE_VARIANCE_TIER_6
damage = 55
penetration = ARMOR_PENETRATION_TIER_3
Expand Down Expand Up @@ -140,7 +140,7 @@
name = ".50 heavy pistol bullet"
damage = 45
headshot_state = HEADSHOT_OVERLAY_HEAVY
accuracy = -HIT_ACCURACY_TIER_3
accuracy = HIT_ACCURACY_TIER_3
accuracy_var_low = PROJECTILE_VARIANCE_TIER_6
penetration = ARMOR_PENETRATION_TIER_6
shrapnel_chance = SHRAPNEL_CHANCE_TIER_5
Expand Down

0 comments on commit 48aca9e

Please sign in to comment.