mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 23:26:45 +01:00
Move permissions declaration to the constructor.
This commit is contained in:
parent
d741d9a11e
commit
48150e2002
@ -13,12 +13,13 @@ public class AcrobaticsManager {
|
|||||||
private Player player;
|
private Player player;
|
||||||
private PlayerProfile profile;
|
private PlayerProfile profile;
|
||||||
private int skillLevel;
|
private int skillLevel;
|
||||||
private Permissions permissionInstance = Permissions.getInstance();
|
private Permissions permissionInstance;
|
||||||
|
|
||||||
public AcrobaticsManager (Player player) {
|
public AcrobaticsManager (Player player) {
|
||||||
this.player = player;
|
this.player = player;
|
||||||
this.profile = Users.getProfile(player);
|
this.profile = Users.getProfile(player);
|
||||||
this.skillLevel = profile.getSkillLevel(SkillType.ACROBATICS);
|
this.skillLevel = profile.getSkillLevel(SkillType.ACROBATICS);
|
||||||
|
this.permissionInstance = Permissions.getInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user