9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-19 15:09:26 +00:00

feat: attribute modifiers now included in scale

This commit is contained in:
Logan
2025-08-27 10:52:13 -05:00
parent cd7ef3a85a
commit 06204eb7d9
7 changed files with 82 additions and 7 deletions

View File

@@ -8,9 +8,12 @@ public class PlayerScaleWrapper {
private final int entityId;
@Getter
private final double scale;
@Getter
private final double base;
public PlayerScaleWrapper(int entityId, double scale) {
public PlayerScaleWrapper(int entityId, double base, double scale) {
this.entityId = entityId;
this.scale = scale;
this.base = base;
}
}