修复了clear指令不能正确清除相关记录的bug
修复了截取消息时出现的错误
This commit is contained in:
@@ -25,8 +25,8 @@ public final class App extends JavaPlugin {
|
||||
public static final App INSTANCE = new App();
|
||||
|
||||
private App() {
|
||||
super(new JvmPluginDescriptionBuilder("com.plugin.chatAI-InGroup-v2", "0.1.0")
|
||||
.name("ChatAI-InGroup-v2")
|
||||
super(new JvmPluginDescriptionBuilder("com.plugin.chatAI-InGroup", "0.1.0")
|
||||
.name("ChatAI-InGroup")
|
||||
.author("SLHAF")
|
||||
.build());
|
||||
}
|
||||
@@ -49,7 +49,7 @@ public final class App extends JavaPlugin {
|
||||
} catch (IOException | ClassNotFoundException | InterruptedException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
getLogger().info("ChatAI-InGroup-v2 loaded!");
|
||||
getLogger().info("ChatAI-InGroup loaded!");
|
||||
|
||||
//群聊监听器
|
||||
GlobalEventChannel.INSTANCE.filterIsInstance(GroupMessageEvent.class)
|
||||
@@ -115,6 +115,6 @@ public final class App extends JavaPlugin {
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
getLogger().info("ChatAI-InGroup-v2 disabled!");
|
||||
getLogger().info("ChatAI-InGroup disabled!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user