mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-30 14:33:47 +01:00
Added summary-on-start configuration setting to control whether the summary should be printed.
This commit is contained in:
parent
1859fc5db2
commit
70c6b26db5
@ -1,4 +1,6 @@
|
|||||||
1.2
|
1.2
|
||||||
|
- A new summary of the status of some core protections is now printed
|
||||||
|
on start. Disable this with 'summary-on-start'.
|
||||||
- Blacklist system has been overhauled. Check README.txt for changed
|
- Blacklist system has been overhauled. Check README.txt for changed
|
||||||
configuration settings!
|
configuration settings!
|
||||||
- The blacklist's method of preventing notification repeats is now better,
|
- The blacklist's method of preventing notification repeats is now better,
|
||||||
|
@ -190,6 +190,7 @@ public void loadConfiguration() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Print an overview of settings
|
// Print an overview of settings
|
||||||
|
if (properties.getBoolean("summary-on-start", true)) {
|
||||||
logger.log(Level.INFO, enforceOneSession ? "WorldGuard: Single session is enforced."
|
logger.log(Level.INFO, enforceOneSession ? "WorldGuard: Single session is enforced."
|
||||||
: "WorldGuard: Single session is NOT ENFORCED.");
|
: "WorldGuard: Single session is NOT ENFORCED.");
|
||||||
logger.log(Level.INFO, blockTNT ? "WorldGuard: TNT ignition is blocked."
|
logger.log(Level.INFO, blockTNT ? "WorldGuard: TNT ignition is blocked."
|
||||||
@ -209,6 +210,7 @@ public void loadConfiguration() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called during the early login process to check whether or not to kick the
|
* Called during the early login process to check whether or not to kick the
|
||||||
|
Loading…
Reference in New Issue
Block a user