diff --git a/src/muqsit/invmenu/session/network/handler/PlayerNetworkHandlerRegistry.php b/src/muqsit/invmenu/session/network/handler/PlayerNetworkHandlerRegistry.php index 836dc24..898e3b8 100644 --- a/src/muqsit/invmenu/session/network/handler/PlayerNetworkHandlerRegistry.php +++ b/src/muqsit/invmenu/session/network/handler/PlayerNetworkHandlerRegistry.php @@ -23,7 +23,7 @@ public function __construct(){ })); $this->register(DeviceOS::PLAYSTATION, new ClosurePlayerNetworkHandler(static function(Closure $then) : NetworkStackLatencyEntry{ $timestamp = mt_rand(); - return new NetworkStackLatencyEntry($timestamp, $then, $timestamp * 1000); + return new NetworkStackLatencyEntry($timestamp * 1000000, $then, $timestamp * 1000); })); } @@ -38,4 +38,4 @@ public function register(int $os_id, PlayerNetworkHandler $handler) : void{ public function get(int $os_id) : PlayerNetworkHandler{ return $this->game_os_handlers[$os_id] ?? $this->default; } -} \ No newline at end of file +}