Fixed Archery using Taming skill level

This commit is contained in:
bm01 2012-06-15 02:06:06 +02:00
parent 6f63818e5f
commit 3bc2f5dc55

View File

@ -18,7 +18,7 @@ public class ArcheryManager {
public ArcheryManager (Player player) {
this.player = player;
this.profile = Users.getProfile(player);
this.skillLevel = profile.getSkillLevel(SkillType.TAMING);
this.skillLevel = profile.getSkillLevel(SkillType.ARCHERY);
this.permissionsInstance = Permissions.getInstance();
}