diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 5b802cef..48613832 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -57,7 +57,7 @@ namespace TShockAPI /// The packet arguments that the event has. internal void OnProjectileKill(object sender, GetDataHandlers.ProjectileKillEventArgs args) { - if (args.ProjectileIndex > Main.maxProjectiles || args.ProjectileIndex < 0) + if (args.ProjectileIndex < 0) { args.Handled = true; return;