diff --git a/game-scripts/crazy-party-update.sh b/game-scripts/crazy-party-update.sh index 5b2cbee..d8faeb6 100755 --- a/game-scripts/crazy-party-update.sh +++ b/game-scripts/crazy-party-update.sh @@ -48,8 +48,10 @@ if [[ $oldVersion -le 78 ]]; then echo "Crazy party has to be reinstalled because it is now a 64 bit application." echo "Please run audiogame-manager -r to remove the old version." echo "You can then install it again with audiogame-manager -i" - echo "Don't forget to make a backup of your save.bin file." - find "${WINEPREFIX}/drive_c/Program Files" -name 'save.bin' 2> /dev/null + echo "Don't forget to make a backup of your save.bin file, custom card decks, and custom game lists." + find "${WINEPREFIX}/drive_c/Program Files" -type f -name 'save.bin' 2> /dev/null + find "${WINEPREFIX}/drive_c/Program Files" -type d -name 'deck' 2> /dev/null + find "${WINEPREFIX}/drive_c/Program Files" -type d -name 'game' 2> /dev/null fi if [[ $oldVersion -eq $newVersion ]]; then echo "Crazy Party is up to date."