From 6474cdc6856ff4efd7f95be9019819e73dba078d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 16 Jan 2021 16:38:13 +0000 Subject: [PATCH] correct name --- lgsm/functions/command_wipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 5b4c90271..ceb3be5b5 100755 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -201,7 +201,7 @@ fn_wipe_warning(){ # Will change the seed everytime the wipe command is run if the seed in config is not set fn_wipe_random_seed(){ if [ -z "${seed}" ]; then - shuf -i 1-2147483647 -n 1 > "${datadir}/${servername}-seed.txt" + shuf -i 1-2147483647 -n 1 > "${datadir}/${selfname}-seed.txt" fi }