2020-11-17 12:03:52 +00:00
|
|
|
#!/bin/sh
|
2020-11-24 16:21:34 +00:00
|
|
|
SCRPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
|
2020-11-17 12:03:52 +00:00
|
|
|
PATH="$SCRPATH"/bin:"$PATH"
|
|
|
|
|
|
|
|
if [ ! -f "$SCRPATH"/bin/worldspawn ]; then
|
|
|
|
printf "Map editor is not present, please run build_editor.sh\n"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
worldspawn
|
|
|
|
|
|
|
|
|
|
|
|
|