Skip to content

Commit

Permalink
Fix cast damage
Browse files Browse the repository at this point in the history
  • Loading branch information
IGPenguin authored Oct 31, 2024
1 parent c21cfb8 commit a4f0973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/game_loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ function resolveAction(button){ //Yeah, this is bad, like really bad
case "Undead":
case "Boss":
case "Small":
var magicDamage = playerMgk;
var magicDamage = playerMgk+1;
if (magicDamage > 2) {
magicDamage=2;
playerMgk--;
Expand Down

0 comments on commit a4f0973

Please sign in to comment.