From 02792941dcae5c413bf85e539622938c3b63f6e5 Mon Sep 17 00:00:00 2001 From: haooy <45737655+xhaooy@users.noreply.github.com> Date: Thu, 28 Aug 2025 02:44:21 +0200 Subject: [PATCH] Add Pause zone to inc Add Pause zone to inc --- addons/sourcemod/scripting/include/shavit/zones.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/include/shavit/zones.inc b/addons/sourcemod/scripting/include/shavit/zones.inc index f62a8c2c..806946a7 100644 --- a/addons/sourcemod/scripting/include/shavit/zones.inc +++ b/addons/sourcemod/scripting/include/shavit/zones.inc @@ -47,6 +47,7 @@ enum Zone_Speedmod, // creates a player_speedmod Zone_NoJump, // blocks the player from jumping while inside the zone Zone_Autobhop, // forces autobhop for the player + Zone_Pause, // pause the player's timer ZONETYPES_SIZE }; @@ -139,7 +140,8 @@ stock void GetZoneName(int client, int zoneType, char[] output, int size) "Zone_Gravity", "Zone_Speedmod", "Zone_NoJump", - "Zone_Autobhop", + "Zone_Autobhop",, + "Zone_Pause", }; if (zoneType < 0 || zoneType >= ZONETYPES_SIZE)