mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 11:15:21 +01:00
Add well known 1.7 biomes only when appropriate version
This commit is contained in:
parent
3702918a6f
commit
ec9ebf2dbb
@ -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…
Reference in New Issue
Block a user