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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user