Commit 2b0bb5a6 authored by nanahira's avatar nanahira

fix

parent 972986c8
Pipeline #4909 failed with stages
in 60 minutes and 2 seconds
......@@ -2167,7 +2167,7 @@ ygopro.ctos_follow 'JOIN_GAME', true, (buffer, info, client, server, datas)->
time_limit: settings.hostinfo.time_limit
rule: (opt1 >> 5) & 0x7 # 0 1 2 3 4
mode: (opt1 >> 3) & 0x3 # 0 1 2
duel_rule: opt0 >> 1 # 1 2 3 4 5
duel_rule: (opt0 >> 1) || 5 # 1 2 3 4 5
no_check_deck: !!((opt1 >> 1) & 1)
no_shuffle_deck: !!(opt1 & 1)
start_lp: opt2
......
......@@ -2858,7 +2858,7 @@
time_limit: settings.hostinfo.time_limit,
rule: (opt1 >> 5) & 0x7, // 0 1 2 3 4
mode: (opt1 >> 3) & 0x3, // 0 1 2
duel_rule: opt0 >> 1, // 1 2 3 4 5
duel_rule: (opt0 >> 1) || 5, // 1 2 3 4 5
no_check_deck: !!((opt1 >> 1) & 1),
no_shuffle_deck: !!(opt1 & 1),
start_lp: opt2,
......
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