Skip to content

Commit

Permalink
Merge pull request #123 from FreezePhoenix/patch-11
Browse files Browse the repository at this point in the history
Fix Piercing Shot to actually grant Armor Piercing
  • Loading branch information
kaansoral authored Mar 23, 2024
2 parents 0ff9176 + aa73522 commit 0b4c842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2972,7 +2972,7 @@ function commence_attack(attacker, target, atype) {
}
["apiercing", "rpiercing", "miss"].forEach(function (p) {
if (attacker[p]) {
info[p] = attacker[p];
info[p] = (info[p] || 0) + attacker[p];
}
});
if (
Expand Down

0 comments on commit 0b4c842

Please sign in to comment.