i run the set names through translation now when filtering by sets.

what this means is that if a player so choose, they can list the sets 3 letter code in the en.txt as follows
BOK=betrayers of kamikawa
it will now list the names either as the 3 letter code if thier is no entry, or as whatever you call it in the lang->en.txt file.
This commit is contained in:
omegablast2002@yahoo.com
2013-05-09 01:53:01 +00:00
parent 54021a7f75
commit 9f6a728150

View File

@@ -203,7 +203,7 @@ WCFilterSet::WCFilterSet(string arg)
string WCFilterSet::getCode()
{
char buf[256];
sprintf(buf, "set:%s;", setlist[setid].c_str());
sprintf(buf, "set:%s;", _(setlist[setid].c_str()));
return buf;
}
;