diff options
| author | mat <git@matdoes.dev> | 2024-08-15 01:24:03 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-08-15 01:24:03 +0000 |
| commit | dec544a52ba738e2d0e2c3a042e5ccc0cb336ffb (patch) | |
| tree | 87a1103b3cbd43342fa7c699247313ed826f8be7 /azalea/build.rs | |
| parent | 13afc1d6a42d28f01087fb59ca868696be4a2635 (diff) | |
| download | azalea-drasl-dec544a52ba738e2d0e2c3a042e5ccc0cb336ffb.tar.xz | |
fix ClientboundLevelParticlesPacket errors and pathfinder /particle errors
Diffstat (limited to 'azalea/build.rs')
| -rw-r--r-- | azalea/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/build.rs b/azalea/build.rs index 6fe00484..9a503749 100644 --- a/azalea/build.rs +++ b/azalea/build.rs @@ -7,7 +7,7 @@ fn main() { // stable & beta panic!("Azalea currently requires nightly Rust. You can use `rustup override set nightly` to set the toolchain for this directory."); } - Ok(_) => return, // nightly + Ok(_) => {} // nightly Err(_) => { // probably not installed via rustup, run rustc and parse its output let rustc_command = env::var("RUSTC") |
