From d932732d9b7bb7b9ac89c23f1c064654c2d24a33 Mon Sep 17 00:00:00 2001 From: yusshu Date: Mon, 10 Mar 2025 19:24:30 -0500 Subject: [PATCH] feat: add getVelocity() method to UserBalloonManager --- .../hmccosmetics/user/manager/UserBalloonManager.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/user/manager/UserBalloonManager.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/user/manager/UserBalloonManager.java index 89b24202..a8e19a94 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/user/manager/UserBalloonManager.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/user/manager/UserBalloonManager.java @@ -180,6 +180,10 @@ public class UserBalloonManager { this.getModelEntity().teleport(location); } + public Vector getVelocity() { + return getModelEntity().getVelocity(); + } + public void setVelocity(Vector vector) { this.getModelEntity().setVelocity(vector); }