mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-31 14:49:35 +01:00
Updated changelog, removed unused import
This commit is contained in:
parent
b23fa36543
commit
1943ce884a
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user