Forgot to change this to pull from the config file

This commit is contained in:
nossr50 2012-02-20 16:34:55 -08:00
parent c915bb8312
commit 470b29c229

View File

@ -77,7 +77,6 @@ public class mcPlayerListener implements Listener
{
plugin = instance;
}
@EventHandler(ignoreCancelled = true)
public void onSheepUndressing(PlayerShearEntityEvent event)
@ -86,7 +85,7 @@ public class mcPlayerListener implements Listener
if(mcPermissions.getInstance().taming(player))
{
PlayerProfile PP = Users.getProfile(player);
PP.addXP(SkillType.TAMING, 100, player);
PP.addXP(SkillType.TAMING, LoadProperties.mshearing, player);
}
}