mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-27 10:33:21 +00:00
Merge pull request #2204 from Yoshax/accuracypenalty
Increases accuracy penalties in detrimental states
This commit is contained in:
@@ -334,12 +334,12 @@
|
||||
P.dispersion = dispersion
|
||||
|
||||
// Certain statuses make it harder to aim, blindness especially. Same chances as melee, however guns accuracy uses multiples of 15.
|
||||
if(user.confused)
|
||||
accuracy -= 2
|
||||
if(user.eye_blind)
|
||||
accuracy -= 5
|
||||
if(user.eye_blurry)
|
||||
accuracy -= 1
|
||||
accuracy -= 2
|
||||
if(user.confused)
|
||||
accuracy -= 3
|
||||
|
||||
//accuracy bonus from aiming
|
||||
if (aim_targets && (target in aim_targets))
|
||||
|
||||
Reference in New Issue
Block a user