diff --git a/src/dehacked.c b/src/dehacked.c index 8cb70412..c6c9cced 100644 --- a/src/dehacked.c +++ b/src/dehacked.c @@ -3686,13 +3686,17 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad) // no undo support for this insanity yet //DEH_WriteUndoline(word, word2, UNDO_HEADER); } - else if (fastcmp(word, "SRB2")) + else if (fastcmp(word, "SRB2KART")) { INT32 ver = searchvalue(strtok(NULL, "\n")); if (ver != PATCHVERSION) deh_warning("Patch is for SRB2Kart version %d,\nonly version %d is supported", ver, PATCHVERSION); //DEH_WriteUndoline(word, va("%d", ver), UNDO_NONE); } + else if (fastcmp(word, "SRB2")) + { + deh_warning("Patch is only compatible with base SRB2."); + } // Clear all data in certain locations (mostly for unlocks) // Unless you REALLY want to piss people off, // define a custom gamedata /before/ doing this!! diff --git a/src/dehacked.h b/src/dehacked.h index 411cb6c1..27ceae58 100644 --- a/src/dehacked.h +++ b/src/dehacked.h @@ -54,7 +54,7 @@ extern const char *superactions[MAXRECURSION]; extern UINT8 superstack; // If the dehacked patch does not match this version, we throw a warning -#define PATCHVERSION 210 +#define PATCHVERSION 102 #define MAXLINELEN 1024