Commit 8e6224d4 authored by REIKAI's avatar REIKAI 💬

repo 10.15

parent 1997f87c
Pipeline #17182 passed with stages
in 29 minutes and 40 seconds
...@@ -600,7 +600,7 @@ function rsof.Escape_Old_Functions() ...@@ -600,7 +600,7 @@ function rsof.Escape_Old_Functions()
end end
return para1(g, table.unpack(para_list)) return para1(g, table.unpack(para_list))
else else
return rsop.SelectOperate(sel_hint, sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_list, ...) return rsop.OperateCards(sel_hint, sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_list, ...)
end end
end end
rsgf.SelectSolve = function(g, sel_hint, sp, filter, minct, maxct, except_obj, solve_list, ...) rsgf.SelectSolve = function(g, sel_hint, sp, filter, minct, maxct, except_obj, solve_list, ...)
...@@ -619,7 +619,7 @@ function rsof.Escape_Old_Functions() ...@@ -619,7 +619,7 @@ function rsof.Escape_Old_Functions()
end end
return para1(g, table.unpack(para_list)) return para1(g, table.unpack(para_list))
else else
return rsgf.SelectOperate(sel_hint, g, sp, filter, minct, maxct, except_obj, solve_list, ...) return rsgf.OperateCards(sel_hint, g, sp, filter, minct, maxct, except_obj, solve_list, ...)
end end
end end
local selectfun_list = { local selectfun_list = {
...@@ -628,10 +628,10 @@ function rsof.Escape_Old_Functions() ...@@ -628,10 +628,10 @@ function rsof.Escape_Old_Functions()
} }
for str_idx, str_val in pairs(selectfun_list) do for str_idx, str_val in pairs(selectfun_list) do
rsop["Select"..str_idx] = function(sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_parama, ...) rsop["Select"..str_idx] = function(sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_parama, ...)
return rsop.SelectOperate(str_val, sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_parama, ...) return rsop.OperateCards(str_val, sp, filter, tp, loc_self, loc_oppo, minct, maxct, except_obj, solve_parama, ...)
end end
rsgf["Select"..str_idx] = function(g, sp, filter, minct, maxct, except_obj, solve_parama, ...) rsgf["Select"..str_idx] = function(g, sp, filter, minct, maxct, except_obj, solve_parama, ...)
return rsgf.SelectOperate(str_val, g, sp, filter, minct, maxct, except_obj, solve_parama, ...) return rsgf.OperateCards(str_val, g, sp, filter, minct, maxct, except_obj, solve_parama, ...)
end end
end end
--// --//
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment