]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/portals.qh
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / portals.qh
index 846ee25f0a72d4ea183b169ca8ddfc4eb5be4f4e..bdd15f049b392ca5bab185ee983b3b18d33a998d 100644 (file)
@@ -1,5 +1,7 @@
-#ifndef PORTALS_H
-#define PORTALS_H
+#pragma once
+
+float autocvar_g_balance_portal_health;
+float autocvar_g_balance_portal_lifetime;
 
 .float portal_id;
 .entity portal_in, portal_out;
@@ -12,4 +14,5 @@ void Portal_ClearWithID(entity own, float id);
 
 vector Portal_ApplyTransformToPlayerAngle(vector transform, vector vangle);
 void Portal_ClearAll_PortalsOnly(entity own);
-#endif
\ No newline at end of file
+
+void Portal_Think(entity this);