Commit 5169b7b2 authored by nanahira's avatar nanahira

fix

parent 9c1b4ca5
Pipeline #4266 failed with stages
in 1 minute and 6 seconds
......@@ -862,23 +862,23 @@ public class DeckManager : ServantWithCardDescription
int returnValue = -233;
if (UIPopupList_ban.value == GameStringManager.get_unsafe(1240)) // ocg
{
returnValue = 1;
returnValue = 0;
}
if (UIPopupList_ban.value == GameStringManager.get_unsafe(1241)) // tcg
{
returnValue = 2;
returnValue = 1;
}
if (UIPopupList_ban.value == GameStringManager.get_unsafe(1242)) // ocg + tcg
{
returnValue = 3;
returnValue = 2;
}
if (UIPopupList_ban.value == GameStringManager.get_unsafe(1243)) // custom
{
returnValue = 4;
returnValue = 3;
}
if (UIPopupList_ban.value == GameStringManager.get_unsafe(1249)) // ccg
{
returnValue = 5;
returnValue = 4;
}
return returnValue;
}
......
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