Don't autofill EVs in Gen 6 Hackmons metas (#1722)

This commit is contained in:
Kris Johnson
2021-02-13 12:56:37 -07:00
committed by GitHub
parent 8e81d19b45
commit 83bd792b1b

View File

@@ -129,7 +129,7 @@
update: function () {
teams = Storage.teams;
if (this.curTeam) {
this.ignoreEVLimits = (this.curTeam.gen < 3 || this.curTeam.format.includes('hackmons') || this.curTeam.format === 'gen8metronomebattle');
this.ignoreEVLimits = (this.curTeam.gen < 3 || (this.curTeam.format.includes('hackmons') && this.curTeam.gen !== 6) || this.curTeam.format === 'gen8metronomebattle');
if (this.curSet) {
return this.updateSetView();
}