File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,11 @@ local clock = {
324324 G .GAME .blind .chip_text = number_format (G .GAME .blind .chips )
325325 end ,
326326 cry_ante_base_mod = function (self , dt )
327- return 0.1 * dt / 3
327+ if G .SETTINGS .paused then
328+ return 0
329+ else
330+ return 0.1 * dt / 3
331+ end
328332 end ,
329333}
330334local trick = {
@@ -629,11 +633,15 @@ local lavender_loop = {
629633 and G .GAME .cry_ach_conditions .patience_virtue_earnable ~= true
630634 then
631635 G .GAME .cry_ach_conditions .patience_virtue_timer = G .GAME .cry_ach_conditions .patience_virtue_timer
632- - dt * (G .GAME .modifiers .cry_rush_hour_iii and 0.5 or 1 )
636+ - dt * (G .GAME .modifiers .cry_rush_hour_iii and 0.5 or 1 ) * ( G . SETTINGS . paused and 0 or 1 )
633637 elseif G .GAME .current_round .hands_played == 0 then
634638 G .GAME .cry_ach_conditions .patience_virtue_earnable = true
635639 end
636- return 1.25 ^ (dt / 1.5 )
640+ if G .SETTINGS .paused then
641+ return 1
642+ else
643+ return 1.25 ^ (dt / 1.5 )
644+ end
637645 end ,
638646}
639647local tornado = {
You can’t perform that action at this time.
0 commit comments