Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- #
- # This script is not official and nothing to do with the developers of Voxel Tycoon
- # it should automatically fix mods made by lazy mod authors. No warranty, USE AT YOUR OWN RISK, it will change filenames on your hard drive
- # as such, it could break your OS so do not use it if you're not technically minded.
- # It should run in any flavour of Linux, MAYBE macOS, I don't know as I'm not wealthy enough to own a Mac to test it.
- # Once again: USE AT YOUR OWN RISK - I take no responsibility for any damage to your PC
- # First install mods from within Voxel Tycoon as normal, go back to the main menu and then run this script
- # It will take a while, when complete, you can then start a new game or load an existing game
- #
- echo "un-fucking-up mods, Does not work with all mods, some are just too poorly written to be fixed...please wait..."
- find ~/.config/itch/apps/voxel-tycoon/Content -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \;
- mv ~/.config/itch/apps/voxel-tycoon/content ~/.config/itch/apps/voxel-tycoon/Content
- echo "All done, your Voxel Tycoon mods are now mostly un-fucked."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement