Removed the option to use Woodcutting without an axe from the config

file.
This commit is contained in:
GJ 2013-03-06 16:27:10 -05:00
parent 109e9725a9
commit c30fdef615
3 changed files with 1 additions and 3 deletions

View File

@ -12,6 +12,7 @@ Version 1.4.03-dev
= Fixed bug with repairing using materials with byte metadata = Fixed bug with repairing using materials with byte metadata
! Moved the Salvage unlock level from config.yml to advanced.yml ! Moved the Salvage unlock level from config.yml to advanced.yml
- Removed option to disable Salvage via the config file. This should be handled via permissions instead. - Removed option to disable Salvage via the config file. This should be handled via permissions instead.
- Removed the option to use Woodcutting without an axe from the config file.
Version 1.4.02 Version 1.4.02
+ Added API to get the skill and power level caps. + Added API to get the skill and power level caps.

View File

@ -197,8 +197,6 @@ public class Config extends AutoUpdateConfigLoader {
public int getTamingCOTWOcelotCost() { return config.getInt("Skills.Taming.Call_Of_The_Wild.Fish_Required", 10); } public int getTamingCOTWOcelotCost() { return config.getInt("Skills.Taming.Call_Of_The_Wild.Fish_Required", 10); }
/* Woodcutting */ /* Woodcutting */
public boolean getWoodcuttingRequiresTool() { return config.getBoolean("Skills.Woodcutting.Requires_Axe", true); }
public int getWoodcuttingXPOak() { return config.getInt("Experience.Woodcutting.Oak", 70); } public int getWoodcuttingXPOak() { return config.getInt("Experience.Woodcutting.Oak", 70); }
public int getWoodcuttingXPBirch() { return config.getInt("Experience.Woodcutting.Birch", 90); } public int getWoodcuttingXPBirch() { return config.getInt("Experience.Woodcutting.Birch", 90); }
public int getWoodcuttingXPSpruce() { return config.getInt("Experience.Woodcutting.Spruce", 80); } public int getWoodcuttingXPSpruce() { return config.getInt("Experience.Woodcutting.Spruce", 80); }

View File

@ -184,7 +184,6 @@ Skills:
SmoothBrick_To_CrackedBrick: true SmoothBrick_To_CrackedBrick: true
Woodcutting: Woodcutting:
Level_Cap: 0 Level_Cap: 0
Requires_Axe: true
# #
# Settings for Double Drops # Settings for Double Drops