Balatro

Balatro

View Stats:
swolblu Mar 11, 2024 @ 3:59pm
bug? reroll tag disables use of reroll voucher
i didn't get a favorable boss blind, but i did see i could skip the penultimate blind and get a reroll tag. i did this and got another unfavorable boss blind.

no problem, i still can use the reroll from my voucher. turns out the button is grayed out, even though i never pressed it in that ante.
< >
Showing 1-3 of 3 comments
marharols Mar 11, 2024 @ 4:37pm 
Guessing its because of the fact that it limits you to one reroll, and under the hood its probably the same mechanism and the game does not differentiate between them. This seems like an oversight, or if its intended maybe they should specify "ANY" reroll will disable it.
malogoss Mar 11, 2024 @ 5:58pm 
Director's Cut wording leaves a grey zone. It could be interpreted both ways.

But what makes this really weird is that in the reverse order, you should have no problem rerolling first with the voucher, then rerolling with the tag.

To me, that weirdness alone would justify making Director's Cut work, even after a tag reroll.

"Can be used once per ante". That simple. Then you run into the problem of the -1 Ante level voucher, yikes.
Last edited by malogoss; Mar 11, 2024 @ 6:09pm
Goblin Mar 11, 2024 @ 9:06pm 
Can confirm that it's a bug due to implementation, rerolling through tag does indeed set the boss_rerolled flag that literally only gets used to check if you can use director's cut. There's already an if statement right below where it gets set that checks if it's the tag or not, so that line should really just be moved into that condition. Turning
 stop_use()
 G.GAME.round_resets.boss_rerolled = true
 if not G.from_boss_tag then ease_dollars(-10) end
 G.from_boss_tag = nil
into
 stop_use()
 if not G.from_boss_tag then
  ease_dollars(-10)
  G.GAME.round_resets.boss_rerolled = true
 end
 G.from_boss_tag = nil

If this were somehow intentional, it's really dumb. So let's go with bug.
< >
Showing 1-3 of 3 comments
Per page: 1530 50

Date Posted: Mar 11, 2024 @ 3:59pm
Posts: 3