This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ $PWD != */Subnautica ]] && [[ $PWD != */SubnauticaZero ]]; then | |
| echo "Not in game directory!" | |
| echo "This script needs to be run from your game directory" | |
| echo "In Steam, go to subnautica -> right click -> options -> local files -> browse local files" | |
| echo "copy this script to that folder" | |
| exit 1 | |
| fi |