From b118b5628b412dce35a3f4bee0aeb71dabd17b1d Mon Sep 17 00:00:00 2001 From: Eremel Date: Mon, 6 Jan 2025 23:33:20 +0000 Subject: [PATCH] missing calculation returns --- src/utils.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils.lua b/src/utils.lua index 9f52f426..9527f109 100644 --- a/src/utils.lua +++ b/src/utils.lua @@ -1063,6 +1063,7 @@ SMODS.calculate_individual_effect = function(effect, scored_card, percent, key, if key == 'level_up' then level_up_hand(scored_card, G.GAME.last_hand_played, effect.instant, type(amount) == 'number' and amount or 1) + return true end if key == 'extra' then @@ -1075,6 +1076,7 @@ SMODS.calculate_individual_effect = function(effect, scored_card, percent, key, if key == 'saved' then SMODS.saved = amount + return true end end