Fixed crashes, added flying check

This commit is contained in:
Shoghi Cervantes Pueyo
2013-04-09 18:44:13 +02:00
parent 2043534003
commit 2b741a2913
4 changed files with 43 additions and 10 deletions

View File

@ -79,7 +79,7 @@ class BanAPI{
if(!$this->isOp($data["player"]->iusername)){
$t = new Vector2($data["target"]->x, $data["target"]->z);
$s = new Vector2($this->server->spawn["x"], $this->server->spawn["z"]);
if($t->distance($s) <= $this->server->getProperty("spawn-protection") and $this->server->api->dhandle($event.".spawn", $data) !== true){
if($t->distance($s) <= $this->server->api->getProperty("spawn-protection") and $this->server->api->dhandle($event.".spawn", $data) !== true){
return false;
}
}