From bc1be64e84c5d04ebebc12ffe804b76584ed5bca Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 3 Apr 2024 21:21:23 +0100 Subject: [PATCH] Update confirmation sound for using the tasteless taunt cheat --- src/m_pw.cpp | 2 +- src/sounds.c | 1 + src/sounds.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/m_pw.cpp b/src/m_pw.cpp index 2327a1d2c..4d4bdac74 100644 --- a/src/m_pw.cpp +++ b/src/m_pw.cpp @@ -207,7 +207,7 @@ void f_tastelesstaunts() CV_SetValue(&cv_tastelesstaunts, !cv_tastelesstaunts.value); if (cv_tastelesstaunts.value) { - S_StartSound(NULL, sfx_kslow); + S_StartSound(NULL, sfx_d4getm); } else { diff --git a/src/sounds.c b/src/sounds.c index 3a1b61347..465af1aac 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -1223,6 +1223,7 @@ sfxinfo_t S_sfx[NUMSFX] = {"cdsprk", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, "/"}, // Prison Egg CD sparkling {"monch", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, {"etexpl", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Game crash"}, + {"d4getm", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Don't forget me"}, {"iwhp", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Instawhip attack {"gbrk", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Guard break! diff --git a/src/sounds.h b/src/sounds.h index 1ae7edf63..0abcd2110 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -1292,6 +1292,7 @@ typedef enum sfx_cdsprk, sfx_monch, sfx_etexpl, + sfx_d4getm, sfx_iwhp, sfx_gbrk,