Changed max speed per tick from 100 to 10 blocks

This commit is contained in:
Shoghi Cervantes 2015-01-11 17:31:34 +01:00
parent f30986d187
commit 3e9196d224
No known key found for this signature in database
GPG Key ID: 78464DB0A7837F89

View File

@ -1069,7 +1069,7 @@ class Player extends Human implements CommandSender, InventoryHolder, IPlayer{
$revert = false; $revert = false;
if($distanceSquared > 10000){ if($distanceSquared > 100){
$revert = true; $revert = true;
}else{ }else{
if($this->chunk === null or !$this->chunk->isGenerated()){ if($this->chunk === null or !$this->chunk->isGenerated()){