Browse Source

save xcf with liquid mask for bucket, complete compile timer

master
poikilos 6 years ago
committed by Jacob Gustafson
parent
commit
668149d9c3
  1. BIN
      patches/Bucket_Game-patched/mods/coderfood/food_basic/etc/mobs_bucket_milk.xcf
  2. 6
      webapp/install-mts.sh
  3. 5
      webapp/reset-minetest.sh

BIN
patches/Bucket_Game-patched/mods/coderfood/food_basic/etc/mobs_bucket_milk.xcf

Binary file not shown.

6
webapp/install-mts.sh

@ -45,7 +45,7 @@ if [ -d minetest ]; then
fi
fi
if [ "@$enable_compile" = "@true" ]; then
date
start=`date +%s`
if [ -f "mtcompile-program.pl" ]; then
# perl mtcompile-program.pl build >& program.log
echo "Compiling via perl..."
@ -55,7 +55,9 @@ if [ "@$enable_compile" = "@true" ]; then
echo "Compiling via bash..."
bash -e mtcompile-program.sh build --server $extra_options >& program.log
fi
date
end=`date +%s`
compile_time=$((end-start))
echo "Compiling program finished in $compile_time seconds."
else
echo "using existing minetest..."
fi

5
webapp/reset-minetest.sh

@ -38,8 +38,11 @@ unzip -u $zip_name || customDie "Can't unzip $zip_name"
cd "$extracted_name"
echo "compiling libraries..."
date
end=`start +%s`
bash -e mtcompile-libraries.sh build >& libraries.log
date
end=`date +%s`
compile_time=$((end-start))
echo "Compiling libraries finished in $compile_time seconds."
echo " (see libraries.log in case of any errors)"
#echo "compiling program..."
#bash -e mtcompile-program.sh build >& program.log

Loading…
Cancel
Save