From 2dd5bd6345a520fc076cd670d6dda8157e05d30e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 28 Jul 2017 04:56:49 +0200 Subject: [PATCH] Create texture packs by default --- tools/Texture_Converter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/Texture_Converter.py b/tools/Texture_Converter.py index f0df481f..2162f3b9 100755 --- a/tools/Texture_Converter.py +++ b/tools/Texture_Converter.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -# Texture pack movement utility. +# EXPERIMENTAL texture pack copying utility. # This Python script helps in converting Minecraft texture packs. It has 2 main features: -# - Can create a Minetest texture pack +# - Can create a Minetest texture pack (default) # - Can update the MineClone 2 textures # This script is currently incomplete, not all textures are converted. # @@ -25,7 +25,7 @@ dry_run = False # If True, textures will be put into a texture pack directory structure. # If False, textures will be put into MineClone 2 directories. -make_texture_pack = False +make_texture_pack = True ### END OF SETTINGS ###