Skip to content

Commit

Permalink
I missed a bit - removing DisableHay
Browse files Browse the repository at this point in the history
Following up on 5b70985
  • Loading branch information
Bt6K committed Jan 8, 2017
1 parent 5b70985 commit 76e551d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions pawn/Interface/timers.pwn
Expand Up @@ -188,14 +188,10 @@ class DeprecatedTimerRuntime {
};

StartTimers() {
#if Feature::DisableHay == 0
SetTimer("QuickTimer", 100, 1);
#endif
}

forward QuickTimer();
public QuickTimer() {
#if Feature::DisableHay == 0
CHay__Process();
#endif
}
2 changes: 0 additions & 2 deletions pawn/Resources/Callbacks/Others/OnDialogResponse.pwn
Expand Up @@ -156,9 +156,7 @@ deprecated_OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
case 6: CLyse__MenuActivate(playerid);
case 7: CWWTW__MenuActivate(playerid);
case 8: rwMenuActivate(playerid);
#if Feature::DisableHay == 0
case 9: hayMenuActivate(playerid);
#endif
case 10: OnWaterFightCmdText(playerid);
}
#endif
Expand Down
2 changes: 0 additions & 2 deletions pawn/Resources/Minigames/Core/MinigamesHandler.pwn
Expand Up @@ -384,10 +384,8 @@ IsPlayerInMinigame(playerId) {
if (rwIsPlayerSignedUp(playerId) && rwGetState() > 1)
return 1;

#if Feature::DisableHay == 0
if (hayHasPlayerSignedUp(playerId) && hayGetState() > 1)
return 1;
#endif

if (CLyse__GetPlayerState(playerId) > 1)
return 1;
Expand Down

0 comments on commit 76e551d

Please sign in to comment.