From fb3d0da38f0f84821bddaffc951b766f4e1ea69c Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Sun, 18 Nov 2018 04:00:05 -0500 Subject: [PATCH 1/2] v1.0.1 prep Enable patch.kart, up version number --- src/config.h.in | 2 +- src/doomdef.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config.h.in b/src/config.h.in index 672a0115..00c69664 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -52,7 +52,7 @@ #define ASSET_HASH_CHARS_KART "784ee9177b01c8cb26edff43eaf93d87" #define ASSET_HASH_MAPS_KART "84018d9b35d181ca9fcc2be5a9d43a45" #ifdef USE_PATCH_KART -#define ASSET_HASH_PATCH_KART "heyguysdidyouknowilovedogssomuch" +#define ASSET_HASH_PATCH_KART "c19c373465f9240c5d61238c35b36a8e" #endif #endif diff --git a/src/doomdef.h b/src/doomdef.h index 546ea9d9..af56c22e 100644 --- a/src/doomdef.h +++ b/src/doomdef.h @@ -150,9 +150,9 @@ extern FILE *logstream; // we use comprevision and compbranch instead. #else #define VERSION 100 // Game version -#define SUBVERSION 0 // more precise version number -#define VERSIONSTRING "v1.0.0" -#define VERSIONSTRINGW L"v1.0.0" +#define SUBVERSION 1 // more precise version number +#define VERSIONSTRING "v1.0.1" +#define VERSIONSTRINGW L"v1.0.1" // Hey! If you change this, add 1 to the MODVERSION below! // Otherwise we can't force updates! #endif @@ -162,7 +162,7 @@ extern FILE *logstream; //#define USE_PATCH_DTA // Kart has it's own, as well. -//#define USE_PATCH_KART +#define USE_PATCH_KART // Modification options // If you want to take advantage of the Master Server's ability to force clients to update From 7b142dbad141eb9892268c6489a9f221a885ab15 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Sun, 18 Nov 2018 05:48:10 -0500 Subject: [PATCH 2/2] Updated the one important modified game print that most people see to be more descriptive (I could've SWORN there were more...) --- src/d_netcmd.c | 6 +++--- src/m_menu.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index d0fcbdc9..c789f38a 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -4835,11 +4835,11 @@ static void Fishcake_OnChange(void) static void Command_Isgamemodified_f(void) { if (savemoddata) - CONS_Printf(M_GetText("modifiedgame is true, but you can save medal and time data in this mod.\n")); + CONS_Printf(M_GetText("modifiedgame is true, but you can save medal and record data in this mod.\n")); else if (modifiedgame) - CONS_Printf(M_GetText("modifiedgame is true, secrets will not be unlocked\n")); + CONS_Printf(M_GetText("modifiedgame is true, extras will not be unlocked\n")); else - CONS_Printf(M_GetText("modifiedgame is false, you can unlock secrets\n")); + CONS_Printf(M_GetText("modifiedgame is false, you can unlock extras\n")); } static void Command_Cheats_f(void) diff --git a/src/m_menu.c b/src/m_menu.c index 535f87d4..7d7c1fbf 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -2706,7 +2706,7 @@ boolean M_Responder(event_t *ev) if (((currentMenu->menuitems[itemOn].status & IT_CALLTYPE) & IT_CALL_NOTMODIFIED) && modifiedgame && !savemoddata) { S_StartSound(NULL, sfx_menu1); - M_StartMessage(M_GetText("This cannot be done in a modified game.\n\n(Press a key)\n"), NULL, MM_NOTHING); + M_StartMessage(M_GetText("This cannot be done with add-ons\nor in a cheated game.\n\n(Press a key)\n"), NULL, MM_NOTHING); return true; } }