diff options
| author | mat <git@matdoes.dev> | 2026-03-22 15:21:24 -0400 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-03-22 15:21:24 -0400 |
| commit | 41a9ae6aaff77646c08c64ac1334a8cc6081c24f (patch) | |
| tree | bca2459752a8c760553e250114a64e1dc4b394f4 /azalea-physics | |
| parent | cac25feb6c43793a84396ac4a19e90df19d1f235 (diff) | |
| download | azalea-drasl-41a9ae6aaff77646c08c64ac1334a8cc6081c24f.tar.xz | |
fix tests
Diffstat (limited to 'azalea-physics')
| -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(), |
