Skip to content

Commit

Permalink
Fix signature
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Jul 6, 2024
1 parent fbcaeb9 commit b910ff4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mod/Jailbreak.Mute/MuteSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,17 @@ public void Start(BasePlugin parent)
}

[GameEventHandler]
public void OnRoundStart(EventRoundStart @event, GameEventInfo info)
public HookResult OnRoundStart(EventRoundStart @event, GameEventInfo info)
{
UnPeaceMute();
return HookResult.Continue;
}

[GameEventHandler]
public void OnRoundEnd(EventRoundEnd @event, GameEventInfo info)
public HookResult OnRoundEnd(EventRoundEnd @event, GameEventInfo info)
{
UnPeaceMute();
return HookResult.Continue;
}

public void Dispose()
Expand Down

0 comments on commit b910ff4

Please sign in to comment.