diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 998557f92..59fddaf99 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3474,6 +3474,11 @@ static void Got_MapQueuecmd(UINT8 **cp, INT32 playernum) } G_MapSlipIntoRoundQueue(queueposition, 0, setgametype, setencore, false); + + if (!IsPlayerAdmin(playernum)) + return; + + CONS_Printf("queuemap: A map was successfully added to the round queue (position %u)\n", queueposition); } static void Command_Pause(void)