From 0b62ab85a1f0c94044983abc8422a7dbc47be5ed Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 21 Apr 2018 09:18:28 -0700 Subject: [PATCH] Nature -> byte instead of int --- PKHeX.Core/Legality/Structures/Nature.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Legality/Structures/Nature.cs b/PKHeX.Core/Legality/Structures/Nature.cs index 73ce7038e..d8570e5d3 100644 --- a/PKHeX.Core/Legality/Structures/Nature.cs +++ b/PKHeX.Core/Legality/Structures/Nature.cs @@ -3,13 +3,14 @@ /// /// Nature ID values for the corresponding English nature name. /// - public enum Nature + public enum Nature : byte { - Random = -1, Hardy, Lonely, Brave, Adamant, Naughty, Bold, Docile, Relaxed, Impish, Lax, Timid, Hasty, Serious, Jolly, Naive, Modest, Mild, Quiet, Bashful, Rash, Calm, Gentle, Sassy, Careful, Quirky, + + Random = 25, } }