Minor typo.

This commit is contained in:
wizjany 2019-03-02 12:43:58 -05:00
parent af93530dbe
commit cc988c0b5a

View File

@ -40,7 +40,7 @@ public WeatherType parseInput(FlagContext context) throws InvalidFlagFormat {
input = input.trim();
WeatherType weatherType = unmarshal(input);
if (weatherType == null) {
throw new InvalidFlagFormat("Unknown game mode: " + input);
throw new InvalidFlagFormat("Unknown weather type: " + input);
}
return weatherType;
}