Add well known 1.7 biomes only when appropriate version
This commit is contained in:
parent
3702918a6f
commit
ec9ebf2dbb
1 changed files with 1 additions and 1 deletions
|
|
@ -738,7 +738,7 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
|
||||||
Object[] biomelist = helper.getBiomeBaseList();
|
Object[] biomelist = helper.getBiomeBaseList();
|
||||||
/* Loop through list, skipping well known biomes */
|
/* Loop through list, skipping well known biomes */
|
||||||
for(int i = 0; i < biomelist.length; i++) {
|
for(int i = 0; i < biomelist.length; i++) {
|
||||||
if (BiomeMap.byBiomeID(i) != null) continue;
|
if (!BiomeMap.byBiomeID(i).isDefault()) continue;
|
||||||
Object bb = biomelist[i];
|
Object bb = biomelist[i];
|
||||||
if(bb != null) {
|
if(bb != null) {
|
||||||
String id = helper.getBiomeBaseIDString(bb);
|
String id = helper.getBiomeBaseIDString(bb);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue