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);
}
/**