Commit b6d5fbe5 authored by nanahira's avatar nanahira

fix

parent 6bd7354c
......@@ -1888,7 +1888,7 @@ ygopro.ctos_follow 'JOIN_GAME', false, (buffer, info, client, server, datas)->
time_limit: 180
rule: (opt1 >> 5) & 3
mode: (opt1 >> 3) & 3
enable_priority: (if !!((opt1 >> 2) & 1) then 3 else 4)
duel_rule: (if !!((opt1 >> 2) & 1) then 3 else 4)
no_check_deck: !!((opt1 >> 1) & 1)
no_shuffle_deck: !!(opt1 & 1)
start_lp: opt2
......
......@@ -2359,7 +2359,7 @@
time_limit: 180,
rule: (opt1 >> 5) & 3,
mode: (opt1 >> 3) & 3,
enable_priority: (!!((opt1 >> 2) & 1) ? 3 : 4),
duel_rule: (!!((opt1 >> 2) & 1) ? 3 : 4),
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