Skip to content

Commit

Permalink
increase defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Aug 6, 2024
1 parent 7bea0c5 commit 09c7082
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public EntityTargeting() {
this.config.addComment(configPath+".enable", """
Limits entities targeting other entities within a configurable radius\s
and timeframe to help reduce lag by cancelling burst activity hotspots.""");
this.limit = config.getInt(configPath + ".entity-target-event-limit", 512, """
this.limit = config.getInt(configPath + ".entity-target-event-limit", 8000, """
Maximum number of times an entity can target another entity within the\s
configured timeframe before the area will be put on cooldown.""");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public Pathfinding() {
Limits entities deciding to pathfind to a specific location\s
within a configurable radius and timeframe to help reduce lag\s
by cancelling burst activity hotspots.""");
this.limit = config.getInt(configPath + ".entity-pathfind-event-limit", 512, """
this.limit = config.getInt(configPath + ".entity-pathfind-event-limit", 4000, """
Maximum number of times an entity can decide to start moving\s
towards a location within the configured timeframe before the\s
area will be put on cooldown.""");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public EntityTargeting() {
this.config.addComment(configPath+".enable",
"Limits entities targeting other entities within a configurable radius\n" +
"and timeframe to help reduce lag by cancelling burst activity hotspots.");
this.limit = config.getInt(configPath + ".entity-target-event-limit", 512,
this.limit = config.getInt(configPath + ".entity-target-event-limit", 8000,
"Maximum number of times an entity can target another entity within the\n" +
"configured timeframe before the area will be put on cooldown.");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public Pathfinding() {
"Limits entities deciding to pathfind to a specific location\n" +
"within a configurable radius and timeframe to help reduce lag\n" +
"by cancelling burst activity hotspots.");
this.limit = config.getInt(configPath + ".entity-pathfind-event-limit", 512,
this.limit = config.getInt(configPath + ".entity-pathfind-event-limit", 4000,
"Maximum number of times an entity can decide to start moving\n" +
"towards a location within the configured timeframe before the\n" +
"area will be put on cooldown.");
Expand Down

0 comments on commit 09c7082

Please sign in to comment.