@Override
public void fromConfig(ConfigurationSection config) throws InvalidConfigurationException {
//we'll need start and end times
//our config is
// type: "timer"
// startTime: <long>
// endTime: <long>
if (!config.contains("type") || !config.getString("type").equals("timer")) {
throw new InvalidConfigurationException("\n ---Invalid type! Expected 'timer' but got " + config.getString("type", "null"));
}
this.startTime = config.getLong("startTime");
this.endTime = config.getLong("endTime");
this.desc = config.getString("description", "Wait until between " + startTime + " and " + endTime);
}
TimeRequirement.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:QuestManager
作者:
评论列表
文章目录