Disabled the gold freeze
This commit is contained in:
@@ -18,9 +18,8 @@ const statisticsRequest = (connection) => (req, res) => {
|
||||
//determine the correct tick rate based on the current gold average
|
||||
//NOTE: copy/pasted
|
||||
let tickRate = (() => {
|
||||
return -60; //TMP: semi-freeze the tick rate
|
||||
if (results[0].goldAverage < 120) return 5;
|
||||
if (results[0].goldAverage < 130) return 15;
|
||||
if (results[0].goldAverage < 120) return 10;
|
||||
if (results[0].goldAverage < 130) return 20;
|
||||
if (results[0].goldAverage < 140) return 30;
|
||||
return 60; //slow it way down
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user