Fixed effect entity id

This commit is contained in:
Shoghi Cervantes
2015-06-19 15:34:33 +02:00
parent 5796784442
commit ef738ef299
2 changed files with 3 additions and 3 deletions

View File

@ -1228,7 +1228,7 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade
public function setDataProperty($id, $type, $value){
if(parent::setDataProperty($id, $type, $value)){
$this->sendData([$this], [$id => $this->dataProperties[$id]]);
$this->sendData($this, [$id => $this->dataProperties[$id]]);
return true;
}