diff --git a/Changelog.txt b/Changelog.txt index dbe15cc0c..94c694f75 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -8,12 +8,12 @@ Version 1.3.00-dev - Added configuration option to control mcMMO reporting damage events - Added hunger regain bonuses to Herbalism skill - Changed chat logging for /p & /a - - Fixed Tree Feller not playing nice with NoCheat (?) - Added framework for new Blast Mining skill - Changed Tree Feller to use per-use ArrayList - Prettied up new config files - Removed duplicate settings in config.yml - Removed unused settings from config.yml (HP Regen) + - Added ability to customize drops for Excavation skill Version 1.2.12 - Fixed issue that caused terrible MySQL performance and negative XP on levelup (Issue #134) diff --git a/src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java b/src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java index 2b5114cf7..7c17df897 100644 --- a/src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java +++ b/src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java @@ -825,7 +825,8 @@ public class PlayerProfile } public long getSkillDATS(AbilityType abilityType) { - long convertedBack = skillsDATS.get(abilityType) * 1000; + //Is this actually unused, or should it actually be returning the convertedBack variable? + long convertedBack = skillsDATS.get(abilityType) * 1000; return skillsDATS.get(abilityType); } public void setSkillDATS(AbilityType abilityType, long value) diff --git a/src/main/java/com/gmail/nossr50/runnables/ChangeDataValueTimer.java b/src/main/java/com/gmail/nossr50/runnables/ChangeDataValueTimer.java index 2a1bde34d..44990a9cf 100644 --- a/src/main/java/com/gmail/nossr50/runnables/ChangeDataValueTimer.java +++ b/src/main/java/com/gmail/nossr50/runnables/ChangeDataValueTimer.java @@ -20,8 +20,6 @@ import java.util.ArrayDeque; import org.bukkit.block.Block; -import com.gmail.nossr50.mcMMO; - /* * This file was created for a breakage introduced in 1.1-R2 * It should be removed afterwards if the breakage is removed.