浏览代码

Updated changelog, removed unused import

GJ 13 年之前
父节点
当前提交
1943ce884a

+ 1 - 1
Changelog.txt

@@ -8,12 +8,12 @@ Version 1.3.00-dev
  - Added configuration option to control mcMMO reporting damage events
  - Added configuration option to control mcMMO reporting damage events
  - Added hunger regain bonuses to Herbalism skill
  - Added hunger regain bonuses to Herbalism skill
  - Changed chat logging for /p & /a
  - Changed chat logging for /p & /a
- - Fixed Tree Feller not playing nice with NoCheat (?)
  - Added framework for new Blast Mining skill
  - Added framework for new Blast Mining skill
  - Changed Tree Feller to use per-use ArrayList
  - Changed Tree Feller to use per-use ArrayList
  - Prettied up new config files
  - Prettied up new config files
  - Removed duplicate settings in config.yml
  - Removed duplicate settings in config.yml
  - Removed unused settings from config.yml (HP Regen)
  - Removed unused settings from config.yml (HP Regen)
+ - Added ability to customize drops for Excavation skill
  
  
 Version 1.2.12
 Version 1.2.12
  - Fixed issue that caused terrible MySQL performance and negative XP on levelup (Issue #134)
  - Fixed issue that caused terrible MySQL performance and negative XP on levelup (Issue #134)

+ 2 - 1
src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java

@@ -825,7 +825,8 @@ public class PlayerProfile
 	}
 	}
 	public long getSkillDATS(AbilityType abilityType)
 	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);
         return skillsDATS.get(abilityType);
     }
     }
     public void setSkillDATS(AbilityType abilityType, long value)
     public void setSkillDATS(AbilityType abilityType, long value)

+ 0 - 2
src/main/java/com/gmail/nossr50/runnables/ChangeDataValueTimer.java

@@ -20,8 +20,6 @@ import java.util.ArrayDeque;
 
 
 import org.bukkit.block.Block;
 import org.bukkit.block.Block;
 
 
-import com.gmail.nossr50.mcMMO;
-
 /*
 /*
  * This file was created for a breakage introduced in 1.1-R2
  * This file was created for a breakage introduced in 1.1-R2
  * It should be removed afterwards if the breakage is removed.
  * It should be removed afterwards if the breakage is removed.