Use seconds as the time unit

This commit is contained in:
SGKoishi 2023-12-22 13:19:58 -08:00
parent 3c2a3f3e53
commit cf726368c5
No known key found for this signature in database
GPG key ID: 8FFC399070653828

View file

@ -424,7 +424,7 @@ namespace TShockAPI
};
PlayerAddBuffWhitelist[BuffID.BrainOfConfusionBuff] = new BuffLimit
{
MaxTicks = 240,
MaxTicks = 60 * 4,
CanBeAddedWithoutHostile = true,
CanOnlyBeAppliedToSender = true
};
@ -436,7 +436,7 @@ namespace TShockAPI
};
PlayerAddBuffWhitelist[BuffID.ParryDamageBuff] = new BuffLimit
{
MaxTicks = 300,
MaxTicks = 60 * 5,
CanBeAddedWithoutHostile = true,
CanOnlyBeAppliedToSender = true
};