Fixed return value of Level::getTickRateTime()

This commit is contained in:
Shoghi Cervantes 2015-09-27 14:31:15 +02:00
parent 46760abafc
commit 606948ef8e

View File

@ -365,7 +365,7 @@ class Level implements ChunkManager, Metadatable{
return $this->tickRate; return $this->tickRate;
} }
public function getTickRateTime() : int{ public function getTickRateTime() : float{
return $this->tickRateTime; return $this->tickRateTime;
} }