From 3b8da98e8350708e5f8fee81f7706fa70a087dad Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Wed, 28 Oct 2020 20:43:46 +0000 Subject: [PATCH] Improve error for Japan-only event moves Thanks Plague Von Karma for help with wording! Refs #7581 --- sim/team-validator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/team-validator.ts b/sim/team-validator.ts index 3cd0f9cf226e9..d4092c8c2fbe4 100644 --- a/sim/team-validator.ts +++ b/sim/team-validator.ts @@ -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) {