mirror of
https://github.com/HibiscusMC/HibiscusCommons.git
synced 2025-12-19 15:09:26 +00:00
Added entity id to PlayerScaleWrapper
This commit is contained in:
@@ -4,10 +4,13 @@ import lombok.Getter;
|
||||
|
||||
public class PlayerScaleWrapper {
|
||||
|
||||
@Getter
|
||||
private final int entityId;
|
||||
@Getter
|
||||
private final double scale;
|
||||
|
||||
public PlayerScaleWrapper(double scale) {
|
||||
public PlayerScaleWrapper(int entityId, double scale) {
|
||||
this.entityId = entityId;
|
||||
this.scale = scale;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user