diff --git a/common/world-time.js b/common/world-time.js index 34ec64f..5b81abf 100644 --- a/common/world-time.js +++ b/common/world-time.js @@ -6,7 +6,7 @@ export class WorldTime { constructor() { this._hour = 0; - this.ticker = new Ticker(1); + this.ticker = new Ticker(0.25); this._state = 0; this.ticker.on('tick', () => { this._state = (this._hour * MAGIC_TO_FIT_HOUR_INTO_USHORT) >> 0;