Skip to content

Commit

Permalink
Fix unlock/curse with temporary mgk
Browse files Browse the repository at this point in the history
  • Loading branch information
IGPenguin authored Nov 4, 2024
1 parent 8978091 commit 1af06f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/game_loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ function resolveAction(button){ //Yeah, this is bad, like really bad
}

if (enemyType.includes("Locked")){
if (playerMgkMax<2){
if (playerMgk<2){
logPlayerAction(actionString,"Not enough mana, requires +2 🔵");
displayPlayerCannotEffect();
break;
Expand Down Expand Up @@ -1543,7 +1543,7 @@ function resolveAction(button){ //Yeah, this is bad, like really bad
break;
}

if (playerMgkMax<2){
if (playerMgk<2){
logPlayerAction(actionString,"Not enough mana, requires +2 🔵");
displayPlayerCannotEffect();
break;
Expand Down

0 comments on commit 1af06f5

Please sign in to comment.