From a4a28925ae93fdba9f1410992a58223ce0112257 Mon Sep 17 00:00:00 2001 From: Juhu <5894800-Juhu_@users.noreply.gitlab.com> Date: Wed, 8 Feb 2023 18:14:17 +0100 Subject: [PATCH] document new static spawnflag for push entities --- qcsrc/common/mapobjects/trigger/jumppads.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/mapobjects/trigger/jumppads.qh b/qcsrc/common/mapobjects/trigger/jumppads.qh index ca8f002fc..b84ed450b 100644 --- a/qcsrc/common/mapobjects/trigger/jumppads.qh +++ b/qcsrc/common/mapobjects/trigger/jumppads.qh @@ -3,7 +3,7 @@ const int PUSH_ONCE = BIT(0); // legacy, deactivate with relay instead const int PUSH_SILENT = BIT(1); // not used? -#define PUSH_STATIC BIT(12) +#define PUSH_STATIC BIT(12) // xonotic-only, Q3 already behaves like this by default IntrusiveList g_jumppads; STATIC_INIT(g_jumppads) { g_jumppads = IL_NEW(); } -- 2.39.2