aboutsummaryrefslogtreecommitdiff
path: root/azalea-block/src/lib.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-01-04 00:50:39 -0630
committermat <git@matdoes.dev>2026-01-04 00:50:39 -0630
commit53ff9c652491bc9749123452dbabcf4a51b263f3 (patch)
tree1419586e2d101f464a562beedeaa1aa97cea9fcf /azalea-block/src/lib.rs
parent3137132bb93be664bc025c8e829e4f67431b4fe3 (diff)
downloadazalea-drasl-53ff9c652491bc9749123452dbabcf4a51b263f3.tar.xz
re-export simdnbt from azalea-protocol
Diffstat (limited to 'azalea-block/src/lib.rs')
-rw-r--r--azalea-block/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-block/src/lib.rs b/azalea-block/src/lib.rs
index 86e2bc4f..9f39f471 100644
--- a/azalea-block/src/lib.rs
+++ b/azalea-block/src/lib.rs
@@ -49,7 +49,7 @@ pub trait BlockTrait: Debug + Any {
/// Update a property on this block, with the name and value being strings.
///
/// Returns `Ok(())`, if the property name and value are valid, otherwise it
- /// returns `Err(())`.
+ /// returns `Err(InvalidPropertyError)`.
///
/// To get a property, use [`Self::get_property`].
fn set_property(&mut self, name: &str, new_value: &str) -> Result<(), InvalidPropertyError>;