Fix level check compare

This commit is contained in:
Matt 2017-12-01 15:13:03 -05:00 committed by GitHub
parent 4b954cd102
commit 1fcac7c06b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@
}
else
{
if (lvl < pkm.Met_Level)
if (lvl > pkm.Met_Level)
return false;
}