Adventure Mode

This commit is contained in:
Shoghi Cervantes Pueyo
2013-02-01 18:15:14 +01:00
parent eaa3006d51
commit d24d826ffd
5 changed files with 32 additions and 14 deletions

View File

@@ -96,7 +96,7 @@ class BlockAPI{
return;
}
$target = $this->server->api->level->getBlock($data["x"], $data["y"], $data["z"]);
if(isset(Material::$unbreakable[$target[0]])){
if(isset(Material::$unbreakable[$target[0]]) or $this->server->gamemode === 2){
return $this->cancelAction($target);
}
$drop = array(
@@ -392,6 +392,10 @@ class BlockAPI{
if($cancelPlace === true){
return false;
}
if($this->server->gamemode === 2){
return $this->cancelAction($block);
}
$replace = false;
switch($data["block"]){