mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-25 03:35:18 +01:00
Merge pull request #176 from mikeprimm/master
FIx snow rendering in flat map
This commit is contained in:
commit
3e9e695087
@ -149,12 +149,17 @@ public class FlatMap extends MapType {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
int my = mapiter.getHighestBlockYAt() - 1;
|
int my = mapiter.getHighestBlockYAt();
|
||||||
if(my < 0) /* If hole to bottom, all air */
|
|
||||||
continue;
|
|
||||||
if(my > maximumHeight) my = maximumHeight;
|
if(my > maximumHeight) my = maximumHeight;
|
||||||
mapiter.setY(my);
|
mapiter.setY(my);
|
||||||
blockType = mapiter.getBlockTypeID();
|
blockType = mapiter.getBlockTypeID();
|
||||||
|
if(blockType == 0) { /* If air, go down one - fixes ice */
|
||||||
|
my--;
|
||||||
|
if(my < 0)
|
||||||
|
continue;
|
||||||
|
mapiter.setY(my);
|
||||||
|
blockType = mapiter.getBlockTypeID();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
int data = 0;
|
int data = 0;
|
||||||
Color[] colors = colorScheme.colors[blockType];
|
Color[] colors = colorScheme.colors[blockType];
|
||||||
|
Loading…
Reference in New Issue
Block a user