Renomme et corrige script génération de la map

This commit is contained in:
bri cassa 2021-08-27 11:19:52 +02:00
parent 5291494df1
commit 3a8a969062
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ error() {
}
usage() {
echo "Usage : ./regen-map.sh [-h|--help] server_path worldname destination_path"
echo "Génère la carte de nalc vers le fichier $destination_path/nalc_map.png"
echo "Usage : ./genmap.sh [-h|--help] server_path worldname destination_path"
echo "Génère la carte de nalc vers le fichier destination_path/nalc_map.png"
}
action() {
@ -77,7 +77,7 @@ while true; do
--)
shift;;
*)
action
action $1 $2 $3
exit 0
shift;;
esac

View File

@ -33,7 +33,7 @@ action() {
if [ $regenmap -eq 1 ]; then
mount $mountpoint
sleep 5
$serverpath/regen_map.sh $serverpath $world $mapdest
$serverpath/genmap.sh $serverpath $world $mapdest
umount $mountpoint
fi