Fixed entities not updating

This commit is contained in:
Shoghi Cervantes 2013-06-09 20:55:37 +02:00
parent 508ee7e1d6
commit 523c4390fa

View File

@ -366,7 +366,6 @@ class Entity extends Position{
return false; return false;
} }
$hasUpdate = false;
$now = microtime(true); $now = microtime(true);
if($this->check === false){ if($this->check === false){
$this->lastUpdate = $now; $this->lastUpdate = $now;
@ -378,6 +377,7 @@ class Entity extends Position{
$this->tickCounter = 1; $this->tickCounter = 1;
$hasUpdate = $this->environmentUpdate(); $hasUpdate = $this->environmentUpdate();
}else{ }else{
$hasUpdate = true;
$this->tickCounter = 0; $this->tickCounter = 0;
} }