From 202e7199ce78d2ec66dac693c674f460e35ab7d2 Mon Sep 17 00:00:00 2001
From: Eidolon <furyhunter600@gmail.com>
Date: Wed, 25 Dec 2019 20:00:21 -0600
Subject: [PATCH] Ensure + commands get executed before map start

---
 src/d_main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/d_main.c b/src/d_main.c
index 126fc60de..00ede9aec 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -1609,6 +1609,8 @@ void D_SRB2Main(void)
 		// as having been modified for the first game.
 		M_PushSpecialParameters(); // push all "+" parameter at the command buffer
 
+		COM_BufExecute(); // ensure the command buffer gets executed before the map starts (+skin)
+
 		if (M_CheckParm("-gametype") && M_IsNextParm())
 		{
 			// from Command_Map_f
-- 
GitLab