mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-09 11:31:49 +00:00
Player: Fixed not being able to interact with blocks in adventure mode, close #1848
This allows other undesired behaviour like flint&steel, buckets to work in adventure mode when they shouldn't, but that's a bug for another time.
This commit is contained in:
parent
43a0ede9d2
commit
7339c4ac2f
@ -1874,24 +1874,6 @@ class Level implements ChunkManager, Metadatable{
|
|||||||
$ev->setCancelled(); //set it to cancelled so plugins can bypass this
|
$ev->setCancelled(); //set it to cancelled so plugins can bypass this
|
||||||
}
|
}
|
||||||
|
|
||||||
if($player->isAdventure(true) and !$ev->isCancelled()){
|
|
||||||
$canPlace = false;
|
|
||||||
$tag = $item->getNamedTagEntry("CanPlaceOn");
|
|
||||||
if($tag instanceof ListTag){
|
|
||||||
foreach($tag as $v){
|
|
||||||
if($v instanceof StringTag){
|
|
||||||
$entry = ItemFactory::fromString($v->getValue());
|
|
||||||
if($entry->getId() > 0 and $entry->getBlock() !== null and $entry->getBlock()->getId() === $blockClicked->getId()){
|
|
||||||
$canPlace = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$ev->setCancelled(!$canPlace);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->server->getPluginManager()->callEvent($ev);
|
$this->server->getPluginManager()->callEvent($ev);
|
||||||
if(!$ev->isCancelled()){
|
if(!$ev->isCancelled()){
|
||||||
$blockClicked->onUpdate(self::BLOCK_UPDATE_TOUCH);
|
$blockClicked->onUpdate(self::BLOCK_UPDATE_TOUCH);
|
||||||
@ -1952,6 +1934,24 @@ class Level implements ChunkManager, Metadatable{
|
|||||||
$ev->setCancelled();
|
$ev->setCancelled();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($player->isAdventure(true) and !$ev->isCancelled()){
|
||||||
|
$canPlace = false;
|
||||||
|
$tag = $item->getNamedTagEntry("CanPlaceOn");
|
||||||
|
if($tag instanceof ListTag){
|
||||||
|
foreach($tag as $v){
|
||||||
|
if($v instanceof StringTag){
|
||||||
|
$entry = ItemFactory::fromString($v->getValue());
|
||||||
|
if($entry->getId() > 0 and $entry->getBlock() !== null and $entry->getBlock()->getId() === $blockClicked->getId()){
|
||||||
|
$canPlace = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$ev->setCancelled(!$canPlace);
|
||||||
|
}
|
||||||
|
|
||||||
$this->server->getPluginManager()->callEvent($ev);
|
$this->server->getPluginManager()->callEvent($ev);
|
||||||
if($ev->isCancelled()){
|
if($ev->isCancelled()){
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user