From 4a3da23429f09d28ca03dbd7d1deb10edcdf3894 Mon Sep 17 00:00:00 2001 From: JHDev2006 Date: Thu, 23 Oct 2025 22:13:13 +0100 Subject: [PATCH] Update ResourcePackTemplateCreator.gd --- Scripts/Parts/ResourcePackTemplateCreator.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Parts/ResourcePackTemplateCreator.gd b/Scripts/Parts/ResourcePackTemplateCreator.gd index f47fe3c3..e1e60d2b 100644 --- a/Scripts/Parts/ResourcePackTemplateCreator.gd +++ b/Scripts/Parts/ResourcePackTemplateCreator.gd @@ -51,7 +51,7 @@ func create_template() -> void: "wav": ## guzlad: CAN NOT BE format FORMAT_IMA_ADPCM or FORMAT_QOA as they don't support the save function ## guzlad: Should be FORMAT_16_BITS like most of our other .wav files - if OS.is_debug_build(): print("wav:" + i) + print(error_string(wav_file.save_to_wav(destination))) var wav_file: AudioStreamWAV = load(i) if OS.is_debug_build(): print(error_string(wav_file.save_to_wav(destination))) ## guzlad: No OGG yet