Commit 87dd05f7 authored by 柯南's avatar 柯南 Committed by GitHub

Merge pull request #27 from shadowfox87/master

Add Normal type when exporting MSE
parents b96bfe08 7480e4dd
......@@ -339,8 +339,12 @@ public string[] GetTypes(Card c)
{
if (c.IsType(CardType.TYPE_PENDULUM))//灵摆
types[1] = GetType(CardType.TYPE_PENDULUM);
types[2] = GetType(CardType.TYPE_NORMAL);
else if (c.IsType(CardType.TYPE_TUNER))//调整
types[1] = GetType(CardType.TYPE_TUNER);
types[2] = GetType(CardType.TYPE_NORMAL);
else
types[1] = GetType(CardType.TYPE_NORMAL);
}
else if (types[0] != MseCardType.CARD_EFFECT)
{//效果
......
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