1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-19 18:33:00 +01:00

Fixed typo in PlayerProfile that was causing NPEs

This commit is contained in:
GJ
2012-03-27 15:32:51 -04:00
parent 87a0c0b0b6
commit f786c4db50

View File

@@ -756,7 +756,7 @@ public class PlayerProfile {
* @return the ATS for the tool
*/
public long getToolPreparationATS(ToolType tool) {
return skillsDATS.get(tool);
return toolATS.get(tool);
}
/**