Fixed kicked for flying when walking on lily pads (#7)

Add an optional extended description…
This commit is contained in:
Dylan K. Taylor
2016-10-03 09:17:50 +01:00
committed by GitHub
parent 535e1a0eb4
commit 2b6d058760
2 changed files with 6 additions and 17 deletions

View File

@ -21,9 +21,6 @@
namespace pocketmine\block;
abstract class Flowable extends Transparent{
public function canBeFlowedInto(){
@ -42,7 +39,7 @@ abstract class Flowable extends Transparent{
return false;
}
public function getBoundingBox(){
protected function recalculateBoundingBox(){
return null;
}
}