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
|
|
|
|
./worldspawn
|
2020-11-17 12:03:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|