Skip to content

Commit

Permalink
fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
EFHIII committed Mar 14, 2024
1 parent 45d9431 commit b9a1b58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion balatro-sim.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class Hand {
if(joker[JOKER_DISABLED]) return;

if(joker[EDITION] === FOIL) {
this.chips += 30;
this.chips += 50;
}
else if(joker[EDITION] === HOLOGRAPHIC) {
this.mult = bigAdd(10, this.mult);
Expand Down
2 changes: 1 addition & 1 deletion breakdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class Hand {
if(joker[JOKER_DISABLED]) return;

if(joker[EDITION] === FOIL) {
this.chips += 30;
this.chips += 50;
if(this.bd) this.breakdownPlusChips([joker], 30, true);
}
else if(joker[EDITION] === HOLOGRAPHIC) {
Expand Down

0 comments on commit b9a1b58

Please sign in to comment.