Fixed bad overrides of getBoundingBox()

This commit is contained in:
Dylan K. Taylor 2017-08-19 17:16:22 +01:00
parent 0e24596aed
commit e51106e64c
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ class BrownMushroom extends Flowable{
return false;
}
public function getBoundingBox(){
protected function recalculateBoundingBox(){
return null;
}

View File

@ -442,7 +442,7 @@ abstract class Liquid extends Transparent{
}
}
public function getBoundingBox(){
protected function recalculateBoundingBox(){
return null;
}

View File

@ -55,7 +55,7 @@ class SignPost extends Transparent{
return "Sign Post";
}
public function getBoundingBox(){
protected function recalculateBoundingBox(){
return null;
}