Added basic check for if stat required params

This commit is contained in:
Collin Smith 2020-09-02 16:13:14 -07:00
parent 294d69ddc9
commit 03503a8f79

View File

@ -392,7 +392,8 @@ public class Stat {
}
static boolean hasParams(short stat) {
return false; // TODO: determine if stat requires params
final ItemStatCost.Entry entry = entry(stat);
return entry.Encode >= 1 && entry.Encode <= 3; // TODO: determine if stat requires params
}
private Stat() {}