mirror of
https://github.com/BentoBoxWorld/Challenges.git
synced 2025-01-21 15:41:19 +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 class ChallengeLevels implements DataObject, Comparable<ChallengeLevels> {
|
||||||
|
|
||||||
|
public ChallengeLevels() {}
|
||||||
|
|
||||||
@ConfigComment("A friendly name for the level. If blank, level name is used.")
|
@ConfigComment("A friendly name for the level. If blank, level name is used.")
|
||||||
private String friendlyName = "";
|
private String friendlyName = "";
|
||||||
|
@ -23,6 +23,8 @@ import us.tastybento.bskyblock.database.objects.DataObject;
|
|||||||
*/
|
*/
|
||||||
public class Challenges implements DataObject {
|
public class Challenges implements DataObject {
|
||||||
|
|
||||||
|
public Challenges() {}
|
||||||
|
|
||||||
public enum ChallengeType {
|
public enum ChallengeType {
|
||||||
/**
|
/**
|
||||||
* This challenge only shows and icon in the GUI and doesn't do anything.
|
* This challenge only shows and icon in the GUI and doesn't do anything.
|
||||||
|
Loading…
Reference in New Issue
Block a user