From 09fabfc87e3987d7ab4f9146fba7e5fe7fba36b1 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Fri, 17 May 2013 13:56:18 +0200 Subject: [PATCH] Fixed getting spawn seed --- src/Player.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Player.php b/src/Player.php index cdb6952239..e58d744e96 100644 --- a/src/Player.php +++ b/src/Player.php @@ -910,7 +910,7 @@ class Player{ "status" => 0, )); $this->dataPacket(MC_START_GAME, array( - "seed" => $this->server->seed, + "seed" => $this->level->getSeed(), "x" => $this->data->get("position")["x"], "y" => $this->data->get("position")["y"], "z" => $this->data->get("position")["z"],