diff options
Diffstat (limited to 'azalea-core')
| -rwxr-xr-x | azalea-core/src/delta.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/delta.rs b/azalea-core/src/delta.rs index ce49ab50..05bf662a 100755 --- a/azalea-core/src/delta.rs +++ b/azalea-core/src/delta.rs @@ -40,7 +40,7 @@ impl PositionDeltaTrait for PositionDelta8 { impl Vec3 { #[must_use] - pub fn with_delta(&self, delta: &dyn PositionDeltaTrait) -> Vec3 { + pub fn with_delta(&self, delta: &impl PositionDeltaTrait) -> Vec3 { Vec3 { x: self.x + delta.x(), y: self.y + delta.y(), |
