mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-03 11:56:40 +00:00
Added a command to list schematics and the abilitiy to autodetect schematic format
This commit is contained in:
@ -34,4 +34,14 @@ public class SpoutBiomeType extends com.sk89q.worldedit.BiomeType {
|
||||
public BiomeType getSpoutBiome() {
|
||||
return type;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object other) {
|
||||
return other instanceof SpoutBiomeType && ((SpoutBiomeType)other).type.equals(this.type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return 31 + type.hashCode();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user