Fixes clothes resetting after loading savefile without a hat

This commit is contained in:
infinitefusion
2024-06-29 13:38:41 -04:00
parent 5c7a7548a6
commit a5b464095b
2 changed files with 1 additions and 1 deletions

View File

@@ -64,7 +64,7 @@ def migrateOldSavesToCharacterCustomization()
$Trainer.unlocked_hairstyles = [Settings::DEFAULT_OUTFIT_MALE, Settings::DEFAULT_OUTFIT_FEMALE]
end
if !$Trainer.clothes || !$Trainer.hair || !$Trainer.hat
if !$Trainer.clothes || !$Trainer.hair #|| !$Trainer.hat
setupStartingOutfit()
end
end