Merge branch 'v3.0' of git@github-home:webbukkit/dynmap.git into v3.0
This commit is contained in:
commit
f075bf236c
2 changed files with 4 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ public class ColorScheme {
|
|||
id = -1;
|
||||
BiomeMap[] bm = BiomeMap.values();
|
||||
for (int i = 0; i < bm.length; i++) {
|
||||
if (bm[i].toString().equalsIgnoreCase(bio)) {
|
||||
if (bm[i].getId().equalsIgnoreCase(bio)) {
|
||||
id = i;
|
||||
break;
|
||||
} else if (bio.equalsIgnoreCase("BIOME_" + i)) {
|
||||
|
|
|
|||
|
|
@ -297,6 +297,9 @@ public class BiomeMap {
|
|||
public boolean isDefault() {
|
||||
return isDef;
|
||||
}
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public String toString() {
|
||||
return String.format("%s(%s)", id, resourcelocation);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue