diff --git a/data/rulesets.js b/data/rulesets.js index 36f8835f13..4b24f2351f 100644 --- a/data/rulesets.js +++ b/data/rulesets.js @@ -85,7 +85,7 @@ let BattleFormats = { // Items other than Z-Crystals and Pokémon-specific items should be illegal if (!set.item) return; let item = this.dex.getItem(set.item); - if ((item.isNonstandard === 'Unobtainable' || item.isNonstandard === 'Past') && !item.zMove && !item.itemUser) { + if ((item.isNonstandard === 'Unobtainable' || item.isNonstandard === 'Past') && !item.zMove && !item.itemUser && !item.forcedForme) { return [`${set.name}'s item ${item.name} does not exist in Gen ${this.dex.gen}.`]; } },