Fixes setup message

This commit is contained in:
boy0001 2014-12-11 18:02:42 +11:00
parent 7c35150e12
commit b54124ff6d
3 changed files with 7 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.intellectualcrafters</groupId> <groupId>com.intellectualcrafters</groupId>
<artifactId>PlotSquared</artifactId> <artifactId>PlotSquared</artifactId>
<version>2.3.7</version> <version>2.3.8</version>
<name>PlotSquared</name> <name>PlotSquared</name>
<packaging>jar</packaging> <packaging>jar</packaging>
<build> <build>

View File

@ -38,7 +38,7 @@ public class ConfigurationNode {
private final SettingValue type; private final SettingValue type;
private Object value; private Object value;
public ConfigurationNode(final String constant, final Object default_value, final String description, final SettingValue type, @SuppressWarnings("unused") final boolean required) { public ConfigurationNode(final String constant, final Object default_value, final String description, final SettingValue type, final boolean required) {
this.constant = constant; this.constant = constant;
this.default_value = default_value; this.default_value = default_value;
this.description = description; this.description = description;

View File

@ -32,4 +32,9 @@ public class PlotBlock {
this.id = id; this.id = id;
this.data = data; this.data = data;
} }
@Override
public String toString() {
return this.id+":"+this.data;
}
} }