Remove redundant property from Tile

This commit is contained in:
Dylan K. Taylor 2017-10-16 12:35:32 +01:00
parent 95fa1824c8
commit af85659c63
2 changed files with 0 additions and 5 deletions

View File

@ -268,8 +268,6 @@ class Furnace extends Spawnable implements InventoryHolder, Container, Nameable{
}
$this->lastUpdate = microtime(true);
$this->timings->stopTiming();
return $ret;

View File

@ -73,8 +73,6 @@ abstract class Tile extends Position{
public $closed = false;
/** @var CompoundTag */
public $namedtag;
/** @var float */
protected $lastUpdate;
/** @var Server */
protected $server;
/** @var TimingsHandler */
@ -142,7 +140,6 @@ abstract class Tile extends Position{
assert($this->chunk !== null);
$this->name = "";
$this->lastUpdate = microtime(true);
$this->id = Tile::$tileCount++;
$this->x = $this->namedtag->x->getValue();
$this->y = $this->namedtag->y->getValue();