From 210cbbfcc561e2fa069a8e87e7fa180151eebc48 Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Mon, 11 Feb 2013 00:05:12 +0100 Subject: [PATCH] increase max size for portals, otherwise unclaimed ones are really hard to see --- code/map_data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/map_data.js b/code/map_data.js index 3bc7a169..34f9dcc4 100644 --- a/code/map_data.js +++ b/code/map_data.js @@ -230,7 +230,7 @@ window.renderPortal = function(ent) { var lvWeight = Math.max(2, portalLevel / 1.5); - var lvRadius = portalLevel + 3; + var lvRadius = Math.max(portalLevel + 3, 5); var p = L.circleMarker(latlng, { radius: lvRadius,