From 14ea4495e175258e972d1e5baef13dec80d42fd8 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 10 Oct 2022 07:48:55 -0400 Subject: [PATCH] Egg Capsules use args + optimized tube waypoints --- src/p_spec.h | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/src/p_spec.h b/src/p_spec.h index bbdd5f9a3..c534cfcb0 100644 --- a/src/p_spec.h +++ b/src/p_spec.h @@ -57,6 +57,12 @@ typedef enum TMWPF_FINISHLINE = 1<<3, } textmapwaypointflags_t; +typedef enum +{ + TMBCF_BACKANDFORTH = 1, + TMBCF_REVERSE = 1<<1, +} textmapbattlecapsuleflags_t; + typedef enum { TMFF_AIMLESS = 1, @@ -129,20 +135,6 @@ typedef enum TMB_BARRIER = 1<<1, } textmapbrakflags_t; -typedef enum -{ - TMWPF_DISABLED = 1, - TMWPF_SHORTCUT = 1<<1, - TMWPF_NORESPAWN = 1<<2, - TMWPF_FINISHLINE = 1<<3, -} textmapwaypointflags_t; - -typedef enum -{ - TMBCF_BACKANDFORTH = 1, - TMBCF_REVERSE = 1<<1, -} textmapbattlecapsuleflags_t; - typedef enum { TMICF_INVERTTIMEATTACK = 1,