The script sets
Code: Select all
export LD_LIBRARY_PATH="$here/lib"which overwrites the user's LD_LIBRARY_PATH settings. This is bad on e.g. Gentoo Linux on AMD64, where you need to set
Code: Select all
export LD_LIBRARY_PATH="/emul/linux/x86/usr/lib/opengl/xorg-x11/lib"to be able to run 32-bit OpenGL programs.
The script should respect the user's settings by using
Code: Select all
export LD_LIBRARY_PATH="$here/lib:$LD_LIBRARY_PATH"instead.
Other than that, it works fine. Thanks for making a great game, and for thinking about us Linux gamers!


