This commit is contained in:
Alexander Medvedev
2025-12-05 17:39:03 +01:00
parent d31465386d
commit 74deee228d
3 changed files with 3 additions and 3 deletions

View File

@@ -123,7 +123,7 @@ pub trait FlowingFluid: Send + Sync {
false
}
fn on_scheduled_tick_interal<'a>(
fn on_scheduled_tick_internal<'a>(
&'a self,
world: &'a Arc<World>,
fluid: &'a Fluid,

View File

@@ -107,7 +107,7 @@ impl FluidBehaviour for FlowingLava {
block_pos: &'a BlockPos,
) -> BlockFuture<'a, ()> {
Box::pin(async move {
self.on_scheduled_tick_interal(world, fluid, block_pos)
self.on_scheduled_tick_internal(world, fluid, block_pos)
.await;
})
}

View File

@@ -44,7 +44,7 @@ impl FluidBehaviour for FlowingWater {
block_pos: &'a BlockPos,
) -> BlockFuture<'a, ()> {
Box::pin(async {
self.on_scheduled_tick_interal(world, fluid, block_pos)
self.on_scheduled_tick_internal(world, fluid, block_pos)
.await;
})
}