Commit d9ee1160 authored by chechunchi's avatar chechunchi

fix

parent 34d8e8bf
Pipeline #19624 passed with stages
in 3 minutes and 22 seconds
......@@ -28,7 +28,7 @@ export default (data: Uint8Array) => {
const activateData = new MsgSelectBattleCmd.BattleCmd.BattleData({
card_info: cardInfo,
effect_description: effectDescription,
response: i << (16 + 0),
response: (i << 16) + 0,
});
activateCmd.battle_datas.push(activateData);
}
......@@ -45,7 +45,7 @@ export default (data: Uint8Array) => {
const attackData = new MsgSelectBattleCmd.BattleCmd.BattleData({
card_info: cardInfo,
direct_attackable: directAttackAble == 1,
response: i << (16 + 1),
response: (i << 16) + 1,
});
attackCmd.battle_datas.push(attackData);
}
......
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