Skip to content

Commit

Permalink
make comment more understandable
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Jan 13, 2025
1 parent 2234cba commit 459af45
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ public class DisableCustomEntities extends AEFModule implements Listener {
public DisableCustomEntities() {
super("lag-preventions.disable-entity-spawns", false,"""
Prevent certain entity types from spawning to combat lag.
Fish types are enabled by default on newer versions since they
can cause a ton of lag.""");
Fish types are added by default on newer versions since they
can cause a ton of lag.
Note: This will not remove entities that have already spawned.""");

List<String> defaults = Stream.of(
XEntityType.COD,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ public class DisableCustomEntities extends AEFModule implements Listener {
public DisableCustomEntities() {
super("lag-preventions.disable-entity-spawns", false,
"Prevent certain entity types from spawning to combat lag.\n" +
"Fish types are enabled by default on newer versions since they\n" +
"can cause a ton of lag.");
"Fish types are added by default on newer versions since they\n" +
"can cause a ton of lag.\n" +
"Note: This will not remove entities that have already spawned.");

List<String> defaults = Stream.of(
XEntityType.COD,
Expand Down

0 comments on commit 459af45

Please sign in to comment.