File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1015,23 +1015,26 @@ local sapphire_stamp = {
10151015 set_blind = function (self , reset , silent )
10161016 if not reset then
10171017 G .GAME .stamp_mod = true
1018- G .hand .config .highlighted_limit = G .hand .config .highlighted_limit + 1
1018+ SMODS .change_play_limit (1 )
1019+ SMODS .change_discard_limit (1 )
10191020 end
10201021 end ,
10211022 defeat = function (self , silent )
10221023 if G .GAME .stamp_mod then
10231024 G .GAME .stamp_mod = nil
10241025 end
10251026 if not G .GAME .blind .disabled then
1026- G .hand .config .highlighted_limit = G .hand .config .highlighted_limit - 1
1027+ SMODS .change_play_limit (- 1 )
1028+ SMODS .change_discard_limit (- 1 )
10271029 end
10281030 end ,
10291031 disable = function (self , silent )
10301032 if G .GAME .stamp_mod then
10311033 G .GAME .stamp_mod = nil
10321034 end
10331035 if not G .GAME .blind .disabled then
1034- G .hand .config .highlighted_limit = G .hand .config .highlighted_limit - 1
1036+ SMODS .change_play_limit (- 1 )
1037+ SMODS .change_discard_limit (- 1 )
10351038 end
10361039 end ,
10371040}
You can’t perform that action at this time.
0 commit comments