Add Pause zone to inc

Add Pause zone to inc
This commit is contained in:
haooy 2025-08-28 02:44:21 +02:00 committed by GitHub
parent 91a31ce870
commit 02792941dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,6 +47,7 @@ enum
Zone_Speedmod, // creates a player_speedmod Zone_Speedmod, // creates a player_speedmod
Zone_NoJump, // blocks the player from jumping while inside the zone Zone_NoJump, // blocks the player from jumping while inside the zone
Zone_Autobhop, // forces autobhop for the player Zone_Autobhop, // forces autobhop for the player
Zone_Pause, // pause the player's timer
ZONETYPES_SIZE ZONETYPES_SIZE
}; };
@ -139,7 +140,8 @@ stock void GetZoneName(int client, int zoneType, char[] output, int size)
"Zone_Gravity", "Zone_Gravity",
"Zone_Speedmod", "Zone_Speedmod",
"Zone_NoJump", "Zone_NoJump",
"Zone_Autobhop", "Zone_Autobhop",,
"Zone_Pause",
}; };
if (zoneType < 0 || zoneType >= ZONETYPES_SIZE) if (zoneType < 0 || zoneType >= ZONETYPES_SIZE)