It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Will Wasteland 3 1.3.3 be uploaded for Linux soon? It's there for Windows now but Linux still shows version 1.3.1 as the most recent.
It's up now. Thanks GOG.
Well, it's up, but the launcher is broken and won't start the game.

The cause is these lines in the start.sh script:

cd "${CURRENT_DIR}/game"
chmod +x *
./"game/Wasteland 3.x86_64"

The first line "cd" to the "game" directory, and the third line tries to run game/Wasteland 3.x86_64, but we're already in the game directory, so that can't work.

The fix is to change the last line to read like this:

./"Wasteland 3.x86_64"

Then it will work.