Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

group = "cn.huohuas001.huhobot"
description = "HuHoBot Allay Adapter"
version = "0.1.0"
version = "0.1.1"

java {
toolchain {
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/cn/huohuas001/huHoBot/HuHoBot.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ public void onLoad() {
}
);

// 初始化默认值
config.initializeDefaults();
config.save();

//注册命令
Registries.COMMANDS.register(new HuHoBotCommand());

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"entrance": "cn.huohuas001.huhobot.HuHoBot",
"name": "HuHoBot",
"authors": ["HuoHuas001"],
"version": "0.1.0",
"version": "0.1.1",
"api_version": ">=0.14.0"
}