Skip to content

Commit 96ac284

Browse files
committed
fix probability typos
1 parent 8cd0b50 commit 96ac284

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

items/epic.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ local boredom = {
920920
and card.cry_boredom_marked == context.other_card
921921
then
922922
if
923-
pseudorandom_probability(
923+
SMODS.pseudorandom_probability(
924924
card,
925925
"cry_boredom_joker",
926926
1,
@@ -939,7 +939,7 @@ local boredom = {
939939
if
940940
context.repetition
941941
and context.cardarea == G.play
942-
and pseudorandom_probability(
942+
and SMODS.pseudorandom_probability(
943943
card,
944944
"cry_boredom_card",
945945
1,

items/misc_joker.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4342,7 +4342,7 @@ local rnjoker = {
43424342
end
43434343
elseif j.cond == "odds" then
43444344
if
4345-
pseudorandom_probability(
4345+
SMODS.(
43464346
card,
43474347
1,
43484348
card and card.ability.extra.odds or self.config.extra.odds
@@ -7820,7 +7820,7 @@ local busdriver = {
78207820
if context.joker_main and (to_big(card.ability.extra.mult) > to_big(0)) then
78217821
local oddy = math.max(1, card.ability.extra.odds)
78227822
if
7823-
pseudorandom_probability(
7823+
SMODS.pseudorandom_probability(
78247824
card,
78257825
"cry_busdriver",
78267826
3,

0 commit comments

Comments
 (0)