Commit 8131e284 authored by nanahira's avatar nanahira

Merge branch 'mc'

parents 6f38f6d5 2b0bb5a6
Pipeline #4908 failed with stages
in 60 minutes and 2 seconds
......@@ -2350,7 +2350,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
......
......@@ -3095,7 +3095,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