Skip to content

Commit

Permalink
refactor(legacy): increased antiexploit max item/arrows spawn (#4770)
Browse files Browse the repository at this point in the history
  • Loading branch information
EclipsesDev authored Dec 1, 2024
1 parent 1c99fb7 commit 77b5d4b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ object AntiExploit : Module("AntiExploit", Category.EXPLOIT, hideModule = false)
val limitParticlesAmount by boolean("LimitParticlesAmount", true)
val limitParticlesSpeed by boolean("LimitParticlesSpeed", true)
val limitedEntitySpawn by boolean("LimitedEntitySpawn", true)
val maxItemDropped by int("MaxItemsDropped", 500, 10..5000) { limitedEntitySpawn }
val maxArrowsSpawned by int("MaxArrowsSpawned", 250, 10..1000) { limitedEntitySpawn }
val maxItemDropped by int("MaxItemsDropped", 1000, 10..5000) { limitedEntitySpawn }
val maxArrowsSpawned by int("MaxArrowsSpawned", 500, 10..5000) { limitedEntitySpawn }
val cancelDemo by boolean("CancelDemoGUI", true)

val warn by choices("Warn", arrayOf("Off", "Chat", "Notification"), "Chat")
Expand Down

0 comments on commit 77b5d4b

Please sign in to comment.