From 1bfe89c041281135074f383f6835d06f3e093c8e Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Sun, 24 Nov 2013 01:34:13 +0000 Subject: [PATCH] reduce the number of 'all' comm messages retrieved in one go to 50 at a time related to #656 no 2 --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index c0645c7b..3600df45 100644 --- a/main.js +++ b/main.js @@ -142,7 +142,7 @@ window.CHAT_MIN_RANGE = 6; window.VIEWPORT_PAD_RATIO = 0.3; // how many items to request each query -window.CHAT_PUBLIC_ITEMS = 200; +window.CHAT_PUBLIC_ITEMS = 50; window.CHAT_FACTION_ITEMS = 50; // how many pixels to the top before requesting new data window.CHAT_REQUEST_SCROLL_TOP = 200;