aboutsummaryrefslogtreecommitdiff
path: root/azalea-block
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-block')
-rw-r--r--azalea-block/azalea-block-macros/src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/azalea-block/azalea-block-macros/src/lib.rs b/azalea-block/azalea-block-macros/src/lib.rs
index 1905def0..3d09b018 100644
--- a/azalea-block/azalea-block-macros/src/lib.rs
+++ b/azalea-block/azalea-block-macros/src/lib.rs
@@ -716,10 +716,10 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
// ```
// match state_id {
// // this is just an example of how it might look, these state ids are definitely not correct
- // 0|3|6 => Some(Self::Axis::X),
- // 1|4|7 => Some(Self::Axis::Y),
- // 2|5|8 => Some(Self::Axis::Z),
- // _ => None
+ // 0 | 3 | 6 => Some(Self::Axis::X),
+ // 1 | 4 | 7 => Some(Self::Axis::Y),
+ // 2 | 5 | 8 => Some(Self::Axis::Z),
+ // _ => None,
// }
// ```
let mut property_impls = quote! {};