Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/joker/loaded_dice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ SMODS.Joker {
coder = { 'thermo' }
},
paperback = {
requires_custom_suits = true
requires_custom_suits = true,
requires_crowns = true,
},

loc_vars = function(self, info_queue, card)
Expand Down
4 changes: 2 additions & 2 deletions content/joker/stella_octangula.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if PB_UTIL.should_load_spectrum_items() then
calculate = function(self, card, context)
-- vremade puts the photograph face checker in individual,
-- which means it searches every card every time. this may be faster?
if context.initial_scoring_step and G.GAME.current_round.hands_played == 0 then
if context.initial_scoring_step and not card.ability.extra.used then
card.ability.extra.active = true
card.ability.extra.used = false
card.ability.extra.first_star = nil
Expand All @@ -61,7 +61,7 @@ if PB_UTIL.should_load_spectrum_items() then
}
end
end
if context.after and card.ability.extra.active and card.ability.extra.used then
if context.end_of_round and context.main_eval and card.ability.extra.active and card.ability.extra.used then
card.ability.extra.active = false
card.ability.extra.used = false
end
Expand Down