Allow changing gender of single gender Pokemon

Before that change, Gender Stone and Gender Ball didn't actually
do anything with single-gender Pokemon such as Chansey.
This commit is contained in:
Konrad Borowski
2023-07-22 07:44:26 +02:00
parent 38ea210de7
commit 6af6e448e6

View File

@@ -448,12 +448,12 @@ class Pokemon
# Makes this Pokémon male.
def makeMale
self.gender = 0;
@gender = 0
end
# Makes this Pokémon female.
def makeFemale
self.gender = 1;
@gender = 1
end
# @return [Boolean] whether this Pokémon is male