Lowered chat poll interval to 500ms

This commit is contained in:
Alexander Corn 2015-06-18 00:24:54 -04:00
parent 74bf2dcfca
commit 0e5929df24

View File

@ -13,7 +13,7 @@ SteamCommunity.prototype.chatLogon = function(interval) {
return;
}
interval = interval || 1000;
interval = interval || 500;
this.emit('debug', 'Requesting chat WebAPI token');
this.chatState = SteamCommunity.ChatState.LoggingOn;