Skip to content

Commit

Permalink
Update MuteSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
CactusJoan authored Jul 1, 2024
1 parent af9c0f0 commit 43eae70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/Jailbreak.Mute/MuteSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private int GetPeaceDuration(MuteReason reason)
{
MuteReason.ADMIN => baseTime,
MuteReason.WARDEN_TAKEN => baseTime / 5,
MuteReason.INITIAL_WARDEN => baseTime / 2,
MuteReason.INITIAL_WARDEN => (int) Math.Ceiling(baseTime / 2.0),
MuteReason.WARDEN_INVOKED => baseTime / 2,
_ => baseTime
};
Expand Down

0 comments on commit 43eae70

Please sign in to comment.