From 44dabe145d56d9c6e14db3908b4cc57e21fbc81e Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Mon, 30 Sep 2013 23:23:58 +0100 Subject: [PATCH] reduce faction messages to 50 at a time - as they're no longer cluttered with user-specific alerts (these now appear in a separate 'alerts' tab on the stock site - yet to be implemented in IITC) --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 15169627..bf304d6d 100644 --- a/main.js +++ b/main.js @@ -137,7 +137,7 @@ window.VIEWPORT_PAD_RATIO = 0.3; // how many items to request each query window.CHAT_PUBLIC_ITEMS = 200; -window.CHAT_FACTION_ITEMS = 100; +window.CHAT_FACTION_ITEMS = 50; // how many pixels to the top before requesting new data window.CHAT_REQUEST_SCROLL_TOP = 200; window.CHAT_SHRINKED = 60;