2020-11-17 12:03:52 +00:00
|
|
|
#!/bin/sh
|
2021-01-16 20:16:46 +00:00
|
|
|
SRCPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
|
2020-11-17 12:03:52 +00:00
|
|
|
|
2021-01-16 20:16:46 +00:00
|
|
|
if [ ! -f "$SRCPATH"/bin/worldspawn ]; then
|
2020-11-17 12:03:52 +00:00
|
|
|
printf "Map editor is not present, please run build_editor.sh\n"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-01-16 20:16:46 +00:00
|
|
|
cd "$SRCPATH"/bin
|
2022-01-29 00:02:00 +00:00
|
|
|
|
|
|
|
if [[ -z "${NUCLIDE_GDB}" ]]; then
|
|
|
|
./worldspawn ../ $*
|
|
|
|
else
|
|
|
|
gdb --args ./worldspawn ../ $*
|
|
|
|
fi
|
2020-11-17 12:03:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|