Slightly increase max concurrent tile loads

This commit is contained in:
James Lyne 2020-12-10 02:22:59 +00:00
parent 04ca1108be
commit 34b0e5f259

View File

@ -132,7 +132,7 @@ export class DynmapTileLayer extends L.TileLayer {
}
_tickLoadQueue() {
if (this._loadingTiles.size > 4) {
if (this._loadingTiles.size > 6) {
return;
}