Skip to content

Commit

Permalink
Use seconds as the time unit
Browse files Browse the repository at this point in the history
  • Loading branch information
sgkoishi committed Dec 22, 2023
1 parent 3c2a3f3 commit cf72636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TShockAPI/Bouncer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ internal Bouncer()
};
PlayerAddBuffWhitelist[BuffID.BrainOfConfusionBuff] = new BuffLimit
{
MaxTicks = 240,
MaxTicks = 60 * 4,
CanBeAddedWithoutHostile = true,
CanOnlyBeAppliedToSender = true
};
Expand All @@ -436,7 +436,7 @@ internal Bouncer()
};
PlayerAddBuffWhitelist[BuffID.ParryDamageBuff] = new BuffLimit
{
MaxTicks = 300,
MaxTicks = 60 * 5,
CanBeAddedWithoutHostile = true,
CanOnlyBeAppliedToSender = true
};
Expand Down

0 comments on commit cf72636

Please sign in to comment.