mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
fix typo
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
})
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user