Quote from: ItchyFlea on December 05, 2019, 11:59:59 PM
Had a report via email that a Catalina user was able to get the game running by running this command: chmod +x /path-to-game-executable
However their issue was that the game would simply come up saying that it couldn't run.
This command may not work for those who are affected by the stuck at initialising issue, but it probably wouldn't hurt to give it a try.
I had similar problem (probably exact same) as your user. When you attempt to open the game after a fresh installation (from zip file) you get an error:
"The application 'RimWorldMac' cannot be opened"
OS: MacOS Catalina 10.15.2
Version: RimWorld1-0-2408Mac (DRM Free)
This is how I resolved:
- Open terminal
Code Select
cd /path/to/rimworld/folder/with/app//RimWorldMac.app/Contents/MacOSCode Select
ls -lahrw-rw-rw-@ 1 user staff 60M Dec 13 2017 RimWorldMac
Code Select
chmod 777 RimWorldMacCode Select
ls -lahrwxrwxrwx@ 1 user staff 60M Dec 13 2017 RimWorldMac
Now you should be able to right click and open as you normally would. It appears the extractor doesn't add the necessary execute permissions to the binary executable which causes this issue.
I tried chmod -x but it didn't end up adding the executable permissions, but chmod 777 worked.