aboutsummaryrefslogtreecommitdiff
path: root/azalea-physics/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-physics/src/lib.rs')
-rw-r--r--azalea-physics/src/lib.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/azalea-physics/src/lib.rs b/azalea-physics/src/lib.rs
index 70260396..998fb300 100644
--- a/azalea-physics/src/lib.rs
+++ b/azalea-physics/src/lib.rs
@@ -699,10 +699,10 @@ mod tests {
let block_state = world_lock.write().chunks.set_block_state(
&BlockPos { x: 0, y: 69, z: 0 },
azalea_block::blocks::CobblestoneWall {
- east: azalea_block::properties::EastWall::Low,
- north: azalea_block::properties::NorthWall::Low,
- south: azalea_block::properties::SouthWall::Low,
- west: azalea_block::properties::WestWall::Low,
+ east: azalea_block::properties::WallEast::Low,
+ north: azalea_block::properties::WallNorth::Low,
+ south: azalea_block::properties::WallSouth::Low,
+ west: azalea_block::properties::WallWest::Low,
up: false,
waterlogged: false,
}
@@ -761,10 +761,10 @@ mod tests {
z: -8,
},
azalea_block::blocks::CobblestoneWall {
- east: azalea_block::properties::EastWall::Low,
- north: azalea_block::properties::NorthWall::Low,
- south: azalea_block::properties::SouthWall::Low,
- west: azalea_block::properties::WestWall::Low,
+ east: azalea_block::properties::WallEast::Low,
+ north: azalea_block::properties::WallNorth::Low,
+ south: azalea_block::properties::WallSouth::Low,
+ west: azalea_block::properties::WallWest::Low,
up: false,
waterlogged: false,
}