Commit f56f0c2a authored by mercury233's avatar mercury233

fix near deck

parent 13c8f9ce
......@@ -8,7 +8,7 @@
"没有人可以战胜我!",
"万能的我,什么卡组都会使用!",
"我左手让你,你都不是我的对手。",
"我就闭着眼睛选择一套卡组好了。"
"我可是全宇宙第一妖仙!"
],
"newturn": [
"又到我的回合了,抽卡,希望你会有下个回合。",
......
......@@ -31,6 +31,11 @@
private bool DontChainMyself()
{
foreach (CardExecutor exec in Executors)
{
if (exec.Type == Type && exec.CardId == Card.Id)
return false;
}
return LastChainPlayer != 0;
}
......
......@@ -29,6 +29,11 @@
private bool DontChainMyself()
{
foreach (CardExecutor exec in Executors)
{
if (exec.Type == Type && exec.CardId == Card.Id)
return false;
}
return LastChainPlayer != 0;
}
......
......@@ -62,12 +62,17 @@
},
{
"name": "尼亚",
"deck": "Evilswarm",
"deck": "Yosenju",
"dialog": "near.zh-CN"
},
{
"name": "尼亚",
"deck": "Yosenju",
"dialog": "near.zh-CN"
},
{
"name": "尼亚",
"deck": "Graydle",
"deck": "Evilswarm",
"dialog": "near.zh-CN"
}
]
......
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