Merge branch 'master' of https://github.com/Anuken/Mindustry into 7.0-features

This commit is contained in:
Anuken
2021-07-05 09:17:34 -04:00
5 changed files with 48 additions and 35 deletions

View File

@@ -126,3 +126,4 @@ Skat
WilloIzCitron
SAMBUYYA
genNAowl
TranquillyUnpleasant

View File

@@ -1,12 +0,0 @@
#convert from stereo to mono
cd assets/sounds/
for i in *.ogg; do
echo $i
ffmpeg -i "$i" -ac 1 "OUT_$i"
done
find . -type f ! -name "OUT_*" -delete
for file in OUT_*; do mv "$file" "${file#OUT_}"; done;
cd ../../