Disable first time help message for now.

Dieser Commit ist enthalten in:
sk89q 2014-07-19 15:40:44 -07:00
Ursprung 15b173dca6
Commit b752604c03

Datei anzeigen

@ -61,6 +61,9 @@ import java.util.TimeZone;
* @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 class LocalSession {
*
* @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");