Removes option to fuse from PC while holding a pokemon (the option did nothing)

This commit is contained in:
infinitefusion
2023-07-08 12:18:27 -04:00
parent 95779bfccb
commit fc243c6ac7
2 changed files with 1 additions and 2 deletions

View File

@@ -1671,7 +1671,7 @@ class PokemonStorageScreen
commands[cmdUnfuse = commands.length] = _INTL("Unfuse") commands[cmdUnfuse = commands.length] = _INTL("Unfuse")
commands[cmdReverse = commands.length] = _INTL("Reverse") if $PokemonBag.pbQuantity(:DNAREVERSER) > 0 || $PokemonBag.pbQuantity(:INFINITEREVERSERS) > 0 commands[cmdReverse = commands.length] = _INTL("Reverse") if $PokemonBag.pbQuantity(:DNAREVERSER) > 0 || $PokemonBag.pbQuantity(:INFINITEREVERSERS) > 0
else else
commands[cmdFuse = commands.length] = _INTL("Fuse") commands[cmdFuse = commands.length] = _INTL("Fuse") if !@heldpkmn
end end
end end
commands[cmdNickname = commands.length] = _INTL("Nickname") commands[cmdNickname = commands.length] = _INTL("Nickname")
@@ -2201,7 +2201,6 @@ class PokemonStorageScreen
pbDisplay(_INTL("{1} is already fused!", heldpoke.name)) pbDisplay(_INTL("{1} is already fused!", heldpoke.name))
return return
end end
p selected
if(heldpoke.egg?) if(heldpoke.egg?)
pbDisplay(_INTL("It's impossible to fuse an egg!")) pbDisplay(_INTL("It's impossible to fuse an egg!"))
return return

Binary file not shown.