diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2025-03-16 13:41:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-16 13:41:17 -0500 |
| commit | b0bd992adcff71ee294dd05060e00e652f62a7b2 (patch) | |
| tree | 0a36d8b37befbc75c8c65cc2c8779c3df66bd87b /azalea-core/src/direction.rs | |
| parent | a95408cbcc05b5bd04a084b0a286b571069206f6 (diff) | |
| download | azalea-drasl-b0bd992adcff71ee294dd05060e00e652f62a7b2.tar.xz | |
Fluid physics fixes (#210)
* start fixing code related to fluid physics
* implement force_solid for blocks
* afk pool test
Diffstat (limited to 'azalea-core/src/direction.rs')
| -rwxr-xr-x | azalea-core/src/direction.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/direction.rs b/azalea-core/src/direction.rs index d458f487..656cab1b 100755 --- a/azalea-core/src/direction.rs +++ b/azalea-core/src/direction.rs @@ -17,9 +17,9 @@ pub enum Direction { impl Direction { pub const HORIZONTAL: [Direction; 4] = [ Direction::North, + Direction::East, Direction::South, Direction::West, - Direction::East, ]; pub const VERTICAL: [Direction; 2] = [Direction::Down, Direction::Up]; |
