shavit-zones.sp - make it so slay/stoptimer zones don't apply if paused

rip skronk's hour long bhop_thc time
This commit is contained in:
mourningsickness 2025-07-12 10:37:46 -07:00 committed by GitHub
parent 4f43b628ae
commit 326caccb06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5347,7 +5347,7 @@ public void StartTouchPost(int entity, int other)
case Zone_Slay:
{
if (status != Timer_Stopped)
if (status == Timer_Running)
{
Shavit_StopTimer(other);
ACTUALLY_ForcePlayerSuicide(other);
@ -5357,7 +5357,7 @@ public void StartTouchPost(int entity, int other)
case Zone_Stop:
{
if(status != Timer_Stopped)
if(status == Timer_Running)
{
Shavit_StopTimer(other);
Shavit_PrintToChat(other, "%T", "ZoneStopEnter", other, gS_ChatStrings.sWarning, gS_ChatStrings.sVariable2, gS_ChatStrings.sWarning);