Removes create PBS debug command

This commit is contained in:
infinitefusion
2023-02-13 21:11:27 -05:00
parent 0b64dcb3dd
commit 69d5b7e708
14 changed files with 6 additions and 58 deletions

View File

@@ -463,12 +463,16 @@ class PokemonOption_Scene
# end
options <<
EnumOption.new(_INTL("Download sprites"), [_INTL("On"), _INTL("Off")],
proc { $PokemonSystem.download_sprites ? 0 : 1 },
proc { $PokemonSystem.download_sprites},
proc { |value|
$PokemonSystem.download_sprites = value },
$PokemonSystem.download_sprites = value
},
"Automatically download custom sprites from the internet"
)
if $game_switches
options <<
EnumOption.new(_INTL("Autosave"), [_INTL("On"), _INTL("Off")],