mirror of
https://github.com/BentoBoxWorld/Challenges.git
synced 2024-11-13 06:05:46 +01:00
Fixed bug with saving to flat file.
Must remember to include blank constructor so Beans can create the object!
This commit is contained in:
parent
a2d21f0242
commit
43121bb739
@ -16,6 +16,7 @@ import us.tastybento.bskyblock.database.objects.DataObject;
|
||||
*/
|
||||
public class ChallengeLevels implements DataObject, Comparable<ChallengeLevels> {
|
||||
|
||||
public ChallengeLevels() {}
|
||||
|
||||
@ConfigComment("A friendly name for the level. If blank, level name is used.")
|
||||
private String friendlyName = "";
|
||||
|
@ -22,6 +22,8 @@ import us.tastybento.bskyblock.database.objects.DataObject;
|
||||
*
|
||||
*/
|
||||
public class Challenges implements DataObject {
|
||||
|
||||
public Challenges() {}
|
||||
|
||||
public enum ChallengeType {
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ import us.tastybento.bskyblock.util.Util;
|
||||
*
|
||||
*/
|
||||
public class PlayerData implements DataObject {
|
||||
|
||||
|
||||
@Expose
|
||||
private String uniqueId = "";
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user