aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/delta.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/delta.rs')
-rw-r--r--azalea-core/src/delta.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/azalea-core/src/delta.rs b/azalea-core/src/delta.rs
index 50fdeafa..c193649a 100644
--- a/azalea-core/src/delta.rs
+++ b/azalea-core/src/delta.rs
@@ -19,17 +19,6 @@ pub struct PositionDelta8 {
pub za: i16,
}
-impl PositionDelta8 {
- #[deprecated = "Use Self::x, y, z instead"]
- pub fn float(&self) -> (f64, f64, f64) {
- (
- (self.xa as f64) / 4096.0,
- (self.ya as f64) / 4096.0,
- (self.za as f64) / 4096.0,
- )
- }
-}
-
impl PositionDeltaTrait for PositionDelta8 {
fn x(&self) -> f64 {
(self.xa as f64) / 4096.0