You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
441 B
17 lines
441 B
#!/bin/sh |
|
|
|
if ! command -v path-wizard > /dev/null 2>&1; then |
|
read -p "ao-mud is not installed, install now? [y/n]: " choice |
|
|
|
if [ "$choice" = "y" ]; then |
|
chmod +x $0/spells/path-wizard |
|
path-wizard add $0/spells |
|
echo "Your spellbook has been activated, please open a fresh terminal now." |
|
exit 0 |
|
else |
|
echo "Ok, well the mud won't work until you install it by adding the spells directory to your PATH." |
|
exit 1 |
|
fi |
|
fi |
|
|
|
mud-menu
|
|
|