Skip to content

Commit 7d434f7

Browse files
committed
Missed one during rename
1 parent fe63ccb commit 7d434f7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/block/BaseCoral.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
use pocketmine\item\Item;
3333
use function mt_rand;
3434

35-
abstract class BaseCoral extends CoveredFlowable implements CoralMaterial, Waterloggable{
35+
abstract class BaseCoral extends WaterloggableFlowable implements CoralMaterial, Waterloggable{
3636
use CoralTypeTrait;
3737
use WaterloggableTrait{
3838
onNearbyBlockChange as onWaterBlockChange;

src/block/Lever.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
use pocketmine\world\sound\RedstonePowerOffSound;
3838
use pocketmine\world\sound\RedstonePowerOnSound;
3939

40-
class Lever extends CoveredFlowable implements Waterloggable{
40+
class Lever extends WaterloggableFlowable implements Waterloggable{
4141
use WaterloggableTrait{
4242
place as waterPlace;
4343
onNearbyBlockChange as onWaterBlockChange;

src/block/RedstoneRepeater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
use pocketmine\player\Player;
4040
use pocketmine\world\BlockTransaction;
4141

42-
class RedstoneRepeater extends CoveredFlowable implements PoweredByRedstone, HorizontalFacing, Waterloggable{
42+
class RedstoneRepeater extends WaterloggableFlowable implements PoweredByRedstone, HorizontalFacing, Waterloggable{
4343
use HorizontalFacingTrait;
4444
use PoweredByRedstoneTrait;
4545
use StaticSupportTrait{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Flowable blocks that can be waterlogged.
3131
*/
32-
abstract class CoveredFlowable extends Flowable implements Waterloggable{
32+
abstract class WaterloggableFlowable extends Flowable implements Waterloggable{
3333

3434
public function canBePlacedAt(Block $blockReplace, Vector3 $clickVector, int $face, bool $isClickedBlock) : bool{
3535
return

0 commit comments

Comments
 (0)