Adds way to favorite hats and clothes and item to quickly swap to them

This commit is contained in:
chardub
2025-02-18 11:06:14 -05:00
parent 133f01218b
commit 4089c956d7
28 changed files with 230 additions and 184 deletions

View File

@@ -19,7 +19,9 @@ class ClothesMartAdapter < OutfitsMartAdapter
def getDisplayName(item)
return getName(item) if !item.name
return item.name
name = item.name
name = "* #{name}" if item.id == $Trainer.favorite_clothes
return name
end
def getDescription(item)