Fixed some bugs from recent commits

This commit is contained in:
Maruno17
2021-11-02 18:37:48 +00:00
parent e8170a267c
commit cff6edac5b
3 changed files with 6 additions and 4 deletions

View File

@@ -281,11 +281,11 @@ class DayCare
def choice_text
return nil if !filled?
if @pokemon.male?
return choices.push(_INTL("{1} (♂, Lv.{2})", @pokemon.name, @pokemon.level))
return _INTL("{1} (♂, Lv.{2})", @pokemon.name, @pokemon.level)
elsif @pokemon.female?
return choices.push(_INTL("{1} (♀, Lv.{2})", @pokemon.name, @pokemon.level))
return _INTL("{1} (♀, Lv.{2})", @pokemon.name, @pokemon.level)
end
return choices.push(_INTL("{1} (Lv.{2})", @pokemon.name, @pokemon.level))
return _INTL("{1} (Lv.{2})", @pokemon.name, @pokemon.level)
end
def add_exp(amount = 1)