Skip to content

Commit

Permalink
Improve error for Japan-only event moves
Browse files Browse the repository at this point in the history
Thanks Plague Von Karma for help with wording!

Refs smogon#7581
  • Loading branch information
Zarel authored and Quanyails committed May 12, 2021
1 parent 032784c commit 3b8da98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/team-validator.ts
Expand Up @@ -1523,7 +1523,7 @@ export class TeamValidator {

if (eventData.japan) {
if (fastReturn) return true;
problems.push(`${name} can't use moves from Japan-only Red/Green Version, because this format simulates Yellow Version which can't trade with Red/Green.`);
problems.push(`${name} has moves from Japan-only events, but this format simulates International Yellow/Crystal which can't trade with Japanese games.`);
}

if (eventData.level && (set.level || 0) < eventData.level) {
Expand Down

0 comments on commit 3b8da98

Please sign in to comment.