mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-18 20:14:31 +00:00
removed int return from getSeed
This commit is contained in:
@@ -88,5 +88,5 @@ interface ChunkManager{
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getSeed() : int;
|
||||
public function getSeed();
|
||||
}
|
@@ -128,7 +128,7 @@ class SimpleChunkManager implements ChunkManager{
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getSeed() : int{
|
||||
public function getSeed() {
|
||||
return $this->seed;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user