For now setting the refresh interval back to 1s.

This commit is contained in:
marcins78
2013-01-08 14:36:23 +00:00
parent f6d3844441
commit 946cafd2b4
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ var ChatBoxUI = Class.extend({
maxMessageCount:500,
talkBoxHeight:25,
chatUpdateInterval:100,
chatUpdateInterval:1000,
playerListener:null,
hiddenClasses:null,

View File

@@ -916,7 +916,7 @@ var GameAnimations = Class.extend({
setTimeout(
function () {
that.game.updateGameState();
}, 100);
}, 1000);
if (!animate)
that.game.layoutUI(false);