Removes some debugging logs

This commit is contained in:
chardub
2025-03-14 11:32:15 -04:00
parent d754fc45f5
commit 47876255e9
5 changed files with 33 additions and 6 deletions

View File

@@ -80,7 +80,7 @@ class ClothesShopPresenter < PokemonMartScreen
cmd_confirm = "Set outfit"
cmd_discard = "Discard changes"
cmd_cancel = "Cancel"
options = [cmd_confirm,cmd_discard,cmd_cancel]
options = [cmd_discard,cmd_confirm,cmd_cancel]
choice = pbMessage("You have unsaved changes!",options,3)
case options[choice]
when cmd_confirm

View File

@@ -57,7 +57,6 @@ class HatShopView < ClothesShopView
end
def displayLayerIcons(selected_item=nil)
echoln selected_item
handleHatlessLayerIcons(selected_item)
hat1Filename = getOverworldHatFilename($Trainer.hat)
@@ -78,10 +77,6 @@ class HatShopView < ClothesShopView
@sprites["wornHat_layer1"].src_rect.set(0, 0, frame_width, frame_height) if hatBitmapWrapper
@sprites["wornHat_layer2"].src_rect.set(0, 0, frame_width, frame_height) if hat2BitmapWrapper
echoln hatBitmapWrapper
echoln hat2BitmapWrapper
end

View File

@@ -158,11 +158,15 @@ class HatsMartAdapter < OutfitsMartAdapter
end
def putOnSelectedOutfit()
putOnHat($Trainer.hat,true,false) if $Trainer.hat
putOnHat($Trainer.hat2,true,true) if $Trainer.hat2
@worn_clothes = $Trainer.hat
@worn_clothes2 = $Trainer.hat2
playOutfitChangeAnimation()
pbMessage(_INTL("You put on the hat(s)!\\wtnp[30]"))
end
def putOnOutfit(item)