Last March Update

Some bug fixing to the primitives, the fetchlands are so buggy that I restored to a simple version

Some minor UI improvements
This commit is contained in:
Eduardo
2019-03-31 20:53:13 -06:00
parent e4d73d95ec
commit 6eca5bea2f
6 changed files with 95 additions and 85 deletions

View File

@@ -2127,7 +2127,7 @@ void WGuiFilterItem::updateValue()
}
else if (filterType == FILTER_CMC)
{
for (int i = 0; i < 20; i++)
for (int i = 0; i < 17; i++)
{
sprintf(buf_code, "cmc:%i;", i);
sprintf(buf_name, "%i Mana", i);
@@ -2136,7 +2136,7 @@ void WGuiFilterItem::updateValue()
}
else if (filterType == FILTER_POWER)
{
for (int i = 0; i < 14; i++)
for (int i = 0; i < 17; i++)
{
sprintf(buf_code, "pow:%i;", i);
sprintf(buf_name, "%i power", i);
@@ -2145,7 +2145,7 @@ void WGuiFilterItem::updateValue()
}
else if (filterType == FILTER_TOUGH)
{
for (int i = 0; i < 14; i++)
for (int i = 0; i < 17; i++)
{
sprintf(buf_code, "tgh:%i;", i);
sprintf(buf_name, "%i toughness", i);