Scrub unused data

empty movesets, empty tmhm

bool IsInvalid(int x)
{
int[] banned = {918, 933, 959, 960, 961,962,963,964,965};
if (banned.Contains(x))
return true;

var index = baseForms[x];
if ((x > 151 && x < 808))
return true;
if ((index > 151 && index < 808))
return true;
return false;
}
This commit is contained in:
Kurt 2018-11-12 18:58:02 -08:00
parent 6495dc41af
commit 1adbc270ce
2 changed files with 0 additions and 0 deletions