Skip to content

Commit ac4bf0b

Browse files
committed
Merge branch 'demicolon' of https://github.com/MathIsFun0/Cryptid into demicolon
2 parents a55d0af + 1d3d0f2 commit ac4bf0b

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

lib/calculate.lua

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -952,10 +952,14 @@ function __setting_blind(t)
952952
end
953953

954954
function __poker_hand(t)
955-
return { poker_hands = { [t] = {"m"} } }
955+
return { poker_hands = { [t] = { "m" } } }
956956
end
957957

958-
__any_suit = { other_card = { is_suit = function(self) return true end } }
958+
__any_suit = { other_card = {
959+
is_suit = function(self)
960+
return true
961+
end,
962+
} }
959963

960964
-- How these work: {constructor function, extra args, wrapper func}
961965
Cryptid.force_contexts = {
@@ -1014,10 +1018,10 @@ Cryptid.force_contexts = {
10141018
end end
10151019
},
10161020
-- Cryptid Jokers (alphabetical order probably?)
1017-
j_cry_demicolon = {__joker_main},
1018-
j_cry_m = {{ selling_card = true, card = {
1021+
j_cry_demicolon = { __joker_main },
1022+
j_cry_m = { { selling_card = true, card = {
10191023
is_jolly = function(self)
10201024
return true
10211025
end,
1022-
} }},
1026+
} } },
10231027
}

0 commit comments

Comments
 (0)