From c193491370a61309c1600d503b4d98d35ea997fa Mon Sep 17 00:00:00 2001 From: Slayer95 Date: Mon, 18 Aug 2014 14:44:05 -0500 Subject: [PATCH] Remove illegal EV spread suggestion in Hackmons The format 'Modified Hackmons' will feature it instead. --- 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 ab378d9f7..88dbf39a3 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -1727,7 +1727,7 @@ } } - this.ignoreEVLimits = (this.curTeam.format === 'hackmons' || this.curTeam.format === 'balancedhackmons'); + this.ignoreEVLimits = (this.curTeam.format === 'modifiedhackmons'); if (this.curTeam && this.ignoreEVLimits) { evs = {hp:252, atk:252, def:252, spa:252, spd:252, spe:252}; if (hasMove['gyroball'] || hasMove['trickroom']) delete evs.spe;