aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/sound.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/sound.rs')
-rw-r--r--azalea-core/src/sound.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-core/src/sound.rs b/azalea-core/src/sound.rs
index 3f7b86c3..ebc18928 100644
--- a/azalea-core/src/sound.rs
+++ b/azalea-core/src/sound.rs
@@ -1,10 +1,10 @@
use azalea_buf::AzBuf;
use serde::Serialize;
-use crate::resource_location::ResourceLocation;
+use crate::identifier::Identifier;
#[derive(Clone, Debug, PartialEq, AzBuf, Serialize)]
pub struct CustomSound {
- pub location: ResourceLocation,
+ pub location: Identifier,
pub fixed_range: Option<f32>,
}