Browse Source

fix(wipe): resolve random seed not working

pull/3190/head
Daniel Gibbs 5 years ago
parent
commit
0a241d8ca8
  1. 4
      lgsm/functions/command_wipe.sh

4
lgsm/functions/command_wipe.sh

@ -200,9 +200,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}/${selfname}-seed.txt"
fi
shuf -i 1-2147483647 -n 1 > "${datadir}/${selfname}-seed.txt"
}
fn_print_dots ""

Loading…
Cancel
Save