コード例 #1
0
 public function setDataProperty($id, $type, $value)
 {
     if (parent::setDataProperty($id, $type, $value)) {
         $this->sendData($this, [$id => $this->dataProperties[$id]]);
         return true;
     }
     return false;
 }
コード例 #2
0
ファイル: Player.php プロジェクト: Tinclon/PocketMine-MP
 public function setDataProperty($id, $type, $value, $send = true)
 {
     if (parent::setDataProperty($id, $type, $value, $send)) {
         return true;
     }
     return false;
 }