Block: add face and clickVector to onActivate() parameters, closes #267

this is an old old old issue, i don't know why it wasn't addressed sooner.
This commit is contained in:
Dylan K. Taylor
2019-02-13 14:29:59 +00:00
parent 55be0716d8
commit 7b6d76871c
28 changed files with 45 additions and 31 deletions

View File

@ -78,7 +78,7 @@ class Anvil extends Fallable{
return AxisAlignedBB::one()->squash(Facing::axis(Facing::rotateY($this->facing, false)), 1 / 8);
}
public function onActivate(Item $item, Player $player = null) : bool{
public function onActivate(Item $item, int $face, Vector3 $clickVector, ?Player $player = null) : bool{
if($player instanceof Player){
$player->addWindow(new AnvilInventory($this));
}