From 348dab6fe2e0b9daebcec992ea039d08ddb82cfc Mon Sep 17 00:00:00 2001 From: SinnamonLat Date: Tue, 24 May 2022 00:18:40 +0200 Subject: [PATCH] Fix being unable to switch followers & colours from the menu without switching skins --- src/k_menufunc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 6de1d8efd..df8696a1d 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -2953,6 +2953,10 @@ static void M_MPConfirmCharacterSelection(void) // finally, call the skin[x] console command. // This will call SendNameAndColor which will synch everything we sent here and apply the changes! + + // This is a hack to make sure we call Skin[x]_OnChange afterwards + CV_StealthSetValue(&cv_skin[i], -1); + strcpy(cmd, commandnames[i]); strcat(cmd, skins[setup_player[i].skin].name); COM_ImmedExecute(cmd);