Skip to content

Commit

Permalink
rule category LOGGER
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed May 28, 2023
1 parent 0edb010 commit 2e2e7bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/carpet/settings/CarpetSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -850,15 +850,15 @@ public String description()
"You need to set this rule value to true before using the threadstone logger",
"See also: rule commandThreadstone"
},
category = EXPERIMENTAL
category = {LOGGER, EXPERIMENTAL}
)
public static boolean loggerThreadstone = false;

@Rule(
desc = "Switch for ghostPlayer logger",
category = EXPERIMENTAL
category = LOGGER
)
public static boolean loggerGhostPlayer = false;
public static boolean loggerGhostPlayer = true;

@Rule(
desc = "Disable random light checks nearby players",
Expand Down
1 change: 1 addition & 0 deletions src/main/java/carpet/settings/RuleCategory.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ public class RuleCategory
public static final String YEET = "yeet";
public static final String CLIENT = "client";
public static final String TISCM_PROTOCOL = "TISCM_PROTOCOL";
public static final String LOGGER = "logger";
}

0 comments on commit 2e2e7bd

Please sign in to comment.