From 259f0455ed426bb3c9a461bcee794708f2a671d3 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Sun, 3 Aug 2025 14:16:49 -0400 Subject: [PATCH] Put it in more spots Forgot the MT_ versions in a couple of spots. The actual MT_ in deh_tables now uses the actual sprite & not a placeholder --- src/deh_tables.c | 4 ++++ src/info.c | 4 ++-- src/info.h | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/deh_tables.c b/src/deh_tables.c index a0d967a34..a3394b50b 100644 --- a/src/deh_tables.c +++ b/src/deh_tables.c @@ -1586,6 +1586,7 @@ const char *const STATE_LIST[] = { // array length left dynamic for sanity testi "S_AMPAURA", "S_AMPBURST", + // Tripwire VFX on player for bumping it or passing it "S_TRIPWIREOK", "S_TRIPWIRELOCKOUT", @@ -3594,6 +3595,9 @@ const char *const MOBJTYPE_LIST[] = { // array length left dynamic for sanity t "MT_AMPAURA", "MT_AMPBURST", + "MT_TRIPWIREOK", + "MT_TRIPWIRELOCKOUT", + "MT_GOTIT", "MT_CHARGEAURA", diff --git a/src/info.c b/src/info.c index f9e113678..16dd5bd07 100644 --- a/src/info.c +++ b/src/info.c @@ -13975,7 +13975,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = { // MT_TRIPWIREOK -1, // doomednum - S_CHARGEAURA, // spawnstate + S_TRIPWIREOK, // spawnstate 1000, // spawnhealth S_NULL, // seestate sfx_None, // seesound @@ -14002,7 +14002,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = { // MT_TRIPWIRELOCKOUT -1, // doomednum - S_CHARGEAURA, // spawnstate + S_TRIPWIRELOCKOUT,// spawnstate 1000, // spawnhealth S_NULL, // seestate sfx_None, // seesound diff --git a/src/info.h b/src/info.h index ac8f07ddb..288c1d329 100644 --- a/src/info.h +++ b/src/info.h @@ -4691,6 +4691,9 @@ typedef enum mobj_type MT_AMPAURA, MT_AMPBURST, + MT_TRIPWIREOK, + MT_TRIPWIRELOCKOUT, + MT_GOTIT, MT_CHARGEAURA,