Skip to content

Commit

Permalink
bit more reasonable salt
Browse files Browse the repository at this point in the history
  • Loading branch information
Superlagg committed Jul 12, 2023
1 parent 62ce200 commit 95424bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/clothing/suits/arfsuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3422,7 +3422,7 @@
if(armour_penetration > 0)
return ..()
block_return[BLOCK_RETURN_REDIRECT_METHOD] = REDIRECT_METHOD_DEFLECT
cell.use(round(cell.maxcharge * (rand(1, damage) * 0.005), 10))
cell.use(round(rand(1, damage*15), 10)) // A normal capacity cell gets 30ish shots on average
do_sparks(2, FALSE, owner)
SSrecoil.kickback(owner, recoil_in = 10)
var/soundplay = pick("sound/weapons/bullet_ricochet_1.ogg", "sound/weapons/bullet_ricochet_2.ogg")
Expand Down

0 comments on commit 95424bd

Please sign in to comment.