mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 05:34:58 +00:00
Fixed some bugs from recent commits
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user