mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-21 19:41:36 +00:00
Tell user to copy qvms in run scripts.
This commit is contained in:
parent
3ded564747
commit
6c68e512c7
2 changed files with 12 additions and 0 deletions
|
@ -13,6 +13,12 @@ if [ ! -f $BIN ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f baseq3r/vm/ui.qvm ]; then
|
||||
echo "QVMs not found!"
|
||||
echo "Run 'cp engine/build/$BUILD-$PLATFORM-$ARCH/baseq3r/vm/*.qvm baseq3r/vm/'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Run the game
|
||||
./$BIN +set fs_basepath "." +set vm_game 0 +set vm_cgame 0 +set vm_ui 0 $@
|
||||
|
||||
|
|
6
run.sh
6
run.sh
|
@ -17,6 +17,12 @@ if [ ! -f $BIN ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f baseq3r/vm/ui.qvm ]; then
|
||||
echo "QVMs not found!"
|
||||
echo "Run 'cp engine/build/$BUILD-$PLATFORM-$ARCH/baseq3r/vm/*.qvm baseq3r/vm/'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Run the game
|
||||
./$BIN +set fs_basepath "." +set vm_game 0 +set vm_cgame 0 +set vm_ui 0 $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue