Fixed bug with saving to flat file.

Must remember to include blank constructor so Beans can create the
object!
This commit is contained in:
tastybento 2018-05-29 14:57:01 -07:00
parent d34ad5dce3
commit 3b7b7fa557

View File

@ -94,6 +94,13 @@ public class Players implements DataObject {
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
}
/**
* @return the homeLocations
*/
public Map<Location, Integer> getHomeLocations() {
return homeLocations;
}
/**
* @return the kickedList
*/