Skip to content

Commit

Permalink
Fixes three instances of a negative accuracy bonus
Browse files Browse the repository at this point in the history
  • Loading branch information
AmoryBlaine committed Apr 8, 2024
1 parent 1a5b544 commit 508a5dc
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 508a5dc

Please sign in to comment.