mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-09-12 13:59:09 -05:00
Don't autofill EVs in Gen 6 Hackmons metas (#1722)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user