mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed bulbs constantly respawning their tentacles
This commit is contained in:
parent
ae86396a86
commit
e543dab3eb
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ public class TentacleEntity extends AbstractDecorationEntity {
|
|||
@Override
|
||||
protected Box calculateBoundingBox(BlockPos pos, Direction side) {
|
||||
visibilityBox = null;
|
||||
return Box.of(pos.toCenterPos(), 1, 1, 1).stretch(0, 2, 0);
|
||||
return Box.of(pos.down().toCenterPos(), 1, 1, 1).stretch(0, 2, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue