Added hidden "unknown-user" logging option (default: false) (#397)
* Allow unknown user logging (attempt to patch a bug of tnt splashing blocks and it not being logged) * Changed "unknown-logging" to be hidden (default: false) * Update BlockFormListener.java --------- Co-authored-by: Radiant <i.like.using.discord@gmail.com> Co-authored-by: Intelli <6790859+Intelli@users.noreply.github.com>
This commit is contained in:
parent
2476aa2ea8
commit
1331b8d0c5
2 changed files with 10 additions and 4 deletions
|
|
@ -86,6 +86,7 @@ public class Config extends Language {
|
|||
public boolean PLAYER_MESSAGES;
|
||||
public boolean PLAYER_COMMANDS;
|
||||
public boolean PLAYER_SESSIONS;
|
||||
public boolean UNKNOWN_LOGGING;
|
||||
public boolean USERNAME_CHANGES;
|
||||
public boolean WORLDEDIT;
|
||||
public int MYSQL_MAXIMUM_POOL_SIZE;
|
||||
|
|
@ -196,6 +197,7 @@ public class Config extends Language {
|
|||
this.HOPPER_FILTER_META = this.getBoolean("hopper-filter-meta", false);
|
||||
this.EXCLUDE_TNT = this.getBoolean("exclude-tnt", false);
|
||||
this.NETWORK_DEBUG = this.getBoolean("network-debug", false);
|
||||
this.UNKNOWN_LOGGING = this.getBoolean("unknown-logging", false);
|
||||
this.DONATION_KEY = this.getString("donation-key");
|
||||
this.MYSQL = this.getBoolean("use-mysql");
|
||||
this.PREFIX = this.getString("table-prefix");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue