mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Disable first time help message for now.
This commit is contained in:
parent
15b173dca6
commit
b752604c03
@ -61,6 +61,9 @@
|
||||
* @author sk89q
|
||||
*/
|
||||
public class LocalSession {
|
||||
|
||||
private static final boolean SHOW_HELP_MESSAGE = false;
|
||||
|
||||
public static int MAX_HISTORY_SIZE = 15;
|
||||
public static int EXPIRATION_GRACE = 600000;
|
||||
|
||||
@ -584,8 +587,9 @@ public void setLastScript(String lastScript) {
|
||||
*
|
||||
* @param player
|
||||
*/
|
||||
@SuppressWarnings({"PointlessBooleanExpression", "ConstantConditions"})
|
||||
public void tellVersion(Actor player) {
|
||||
if (config.showHelpInfo) {
|
||||
if (config.showHelpInfo && SHOW_HELP_MESSAGE) {
|
||||
if (!beenToldVersion) {
|
||||
StyledFragment fragment = new StyledFragment(Style.GRAY_DARK);
|
||||
fragment.append("Need help with WorldEdit? Ask us on IRC (irc.esper.net #sk89q) or on our forums @ http://forum.enginehub.org");
|
||||
|
Loading…
Reference in New Issue
Block a user