From 83bd792b1bbdba0a1877072df138444ed5fd17bf Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Sat, 13 Feb 2021 12:56:37 -0700 Subject: [PATCH] Don't autofill EVs in Gen 6 Hackmons metas (#1722) --- js/client-teambuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/client-teambuilder.js b/js/client-teambuilder.js index ae774abec..a72e10304 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -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(); }