mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-28 13:15:30 +01:00
Merge pull request #345 from mikeprimm/master
Fix nesting on residence subzones
This commit is contained in:
commit
181e3dccbd
@ -17,6 +17,7 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
||||
})));
|
||||
|
||||
boxLayers.push(boxLayer);
|
||||
});
|
||||
$.each(residence.Subzones, function(szname, subzone) {
|
||||
$.each(subzone.Areas, function(name2, area2) {
|
||||
var subzoneLayer = configuration.createBoxLayer(area2.X1, area2.X2, area2.Y1, area2.Y2, area2.Z1, area2.Z2);
|
||||
@ -27,7 +28,6 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
||||
boxLayers.push(subzoneLayer);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
configuration.result(new L.LayerGroup(boxLayers));
|
||||
|
Loading…
Reference in New Issue
Block a user