Advertisement
Satscape

vt-mod-unfuckerizer.sh

Sep 13th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.10 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. #
  3. # This script is not official and nothing to do with the developers of Voxel Tycoon
  4. # 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
  5. # as such, it could break your OS so do not use it if you're not technically minded.
  6. # 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.
  7. # Once again: USE AT YOUR OWN RISK - I take no responsibility for any damage to your PC
  8. # First install mods from within Voxel Tycoon as normal, go back to the main menu and then run this script
  9. # It will take a while, when complete, you can then start a new game or load an existing game
  10. #
  11. echo "un-fucking-up mods, Does not work with all mods, some are just too poorly written to be fixed...please wait..."
  12. find ~/.config/itch/apps/voxel-tycoon/Content -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \;
  13. mv ~/.config/itch/apps/voxel-tycoon/content ~/.config/itch/apps/voxel-tycoon/Content
  14. echo "All done, your Voxel Tycoon mods are now mostly un-fucked."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement