From b3b6de758b9cc464c56f3d955f3e48c450f51f31 Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 20 Jun 2022 14:30:14 -0400 Subject: [PATCH] Stop executing quake.rc --- source/cmd.h | 2 +- source/host.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/cmd.h b/source/cmd.h index f9eab24..6e60668 100644 --- a/source/cmd.h +++ b/source/cmd.h @@ -30,7 +30,7 @@ servers can also send across commands and entire text files can be execed. The + command line options are also added to the command buffer. -The game starts with a Cbuf_AddText ("exec quake.rc\n"); Cbuf_Execute (); +The game starts with a Cbuf_AddText ("exec nzp.rc\n"); Cbuf_Execute (); */ diff --git a/source/host.c b/source/host.c index 603f6b3..b8bac57 100644 --- a/source/host.c +++ b/source/host.c @@ -910,14 +910,14 @@ void Host_Init (quakeparms_t *parms) #endif } - Cbuf_InsertText ("exec quake.rc\n"); + Cbuf_InsertText ("exec nzp.rc\n"); Hunk_AllocName (0, "-HOST_HUNKLEVEL-"); host_hunklevel = Hunk_LowMark (); host_initialized = true; - Sys_Printf ("========Quake Initialized=========\n"); + Sys_Printf ("========Nazi Zombies Portable Initialized=========\n"); }