From 2c81f67bc10f4d5f37b8ee411c5ea1553655a646 Mon Sep 17 00:00:00 2001 From: Professor Fartsalot Date: Sat, 23 Aug 2025 12:52:45 -0400 Subject: [PATCH] tiny fix, audiomanager misrepresenting calculation --- scripting/include/fartsy/ass_enhancer.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripting/include/fartsy/ass_enhancer.inc b/scripting/include/fartsy/ass_enhancer.inc index 7fdc05d..cbb8a2b 100644 --- a/scripting/include/fartsy/ass_enhancer.inc +++ b/scripting/include/fartsy/ass_enhancer.inc @@ -79,7 +79,7 @@ enum struct AUDIOMANAGER { **/ void ChangeBGM(int bgm, bool instant) { this.indexBGM = this.VIPBGM > 0 ? this.VIPBGM : bgm == 0 ? g_indexBGM : bgm; - PrintToChatAll("%i = %i >=0 ? %i : %i == 0 ? %i : %i", this.indexBGM, this.VIPBGM, this.VIPBGM, bgm, g_indexBGM, bgm); + PrintToChatAll("%i = %i > 0 ? %i : %i == 0 ? %i : %i", this.indexBGM, this.VIPBGM, this.VIPBGM, bgm, g_indexBGM, bgm); if (instant) { this.timeSeconds = GetEngineTime() - this.loopSeconds; } this.shouldTick = true; this.hasTimeOffset = BGMArray[this.indexBGM].introSeconds > 0 ? true : false;