diff --git a/code/nel/tools/build_gamedata/7_client_install.py b/code/nel/tools/build_gamedata/7_client_install.py index 9087d620b..2bad7fcd2 100644 --- a/code/nel/tools/build_gamedata/7_client_install.py +++ b/code/nel/tools/build_gamedata/7_client_install.py @@ -69,6 +69,11 @@ for category in InstallClientData: targetBnp = targetPath + "/" + package[1][0] printLog(log, "TARGET " + package[1][0]) copyFileIfNeeded(log, sourceBnp, targetBnp) + for ref in category["Refs"]: + printLog(log, "REFERENCE " + ref) + sourceRef = sourcePath + "/" + ref + "_.ref" + targetRef = targetPath + "/" + ref + "_.ref" + copyFileIfNeeded(log, sourceRef, targetRef) printLog(log, "") log.close()