blob: 3e19d2e60f7a5ad434233f550543aa0289db6084 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
export MANAPLUS="../../manaplus/src/manaplus"
if [ -f "$MANAPLUS" ]; then
echo "Starting local manaplus"
else
echo "Starting system manaplus"
export MANAPLUS="manaplus"
fi
${MANAPLUS} -u -d ../../client-data tmw2.manaplus
|