diff options
Diffstat (limited to 'azalea-physics/tests')
| -rw-r--r-- | azalea-physics/tests/physics.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-physics/tests/physics.rs b/azalea-physics/tests/physics.rs index 748cc7bc..0bec955d 100644 --- a/azalea-physics/tests/physics.rs +++ b/azalea-physics/tests/physics.rs @@ -181,7 +181,7 @@ fn test_slab_collision() { let block_state = partial_world.chunks.set_block_state( BlockPos { x: 0, y: 69, z: 0 }, azalea_block::blocks::StoneSlab { - kind: azalea_block::properties::Type::Bottom, + kind: azalea_block::properties::SlabKind::Bottom, waterlogged: false, } .into(), @@ -232,7 +232,7 @@ fn test_top_slab_collision() { let block_state = world_lock.write().chunks.set_block_state( BlockPos { x: 0, y: 69, z: 0 }, azalea_block::blocks::StoneSlab { - kind: azalea_block::properties::Type::Top, + kind: azalea_block::properties::SlabKind::Top, waterlogged: false, } .into(), |
