From: Juhu <5894800-Juhu_@users.noreply.gitlab.com>
Date: Wed, 8 Feb 2023 17:14:17 +0000 (+0100)
Subject: document new static spawnflag for push entities
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a4a28925ae93fdba9f1410992a58223ce0112257;p=xonotic%2Fxonotic-data.pk3dir.git

document new static spawnflag for push entities
---

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(); }