From 00037b364406989684f02ea86d97243174ffc46d Mon Sep 17 00:00:00 2001 From: kaetemi Date: Thu, 7 Jan 2021 07:20:54 +0800 Subject: [PATCH] Apply elevation to ig_static_other --- nel/tools/build_gamedata/processes/ig/2_build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nel/tools/build_gamedata/processes/ig/2_build.py b/nel/tools/build_gamedata/processes/ig/2_build.py index 2d461de99..d5e989bfc 100755 --- a/nel/tools/build_gamedata/processes/ig/2_build.py +++ b/nel/tools/build_gamedata/processes/ig/2_build.py @@ -265,7 +265,8 @@ printLog(log, ">>> Merge other IGs <<<") # (not true merge, since not necesserar mkPath(log, ExportBuildDirectory + "/" + IgStaticOtherExportDirectory) mkPath(log, ExportBuildDirectory + "/" + LigoIgOtherBuildDirectory) mkPath(log, ExportBuildDirectory + "/" + IgOtherBuildDirectory) -copyFilesExtNoTreeIfNeeded(log, ExportBuildDirectory + "/" + IgStaticOtherExportDirectory, ExportBuildDirectory + "/" + IgOtherBuildDirectory, ".ig") +# copyFilesExtNoTreeIfNeeded(log, ExportBuildDirectory + "/" + IgStaticOtherExportDirectory, ExportBuildDirectory + "/" + IgOtherBuildDirectory, ".ig") +igElevation(ExportBuildDirectory + "/" + IgStaticOtherExportDirectory, ExportBuildDirectory + "/" + IgOtherBuildDirectory) copyFilesExtNoTreeIfNeeded(log, ExportBuildDirectory + "/" + LigoIgOtherBuildDirectory, ExportBuildDirectory + "/" + IgOtherBuildDirectory, ".ig") log.close()