发现了default预设相关问题,将其设置为不可删除、添加了启动时检测该预设是否存在的功能;

将两个owner监听器进行了合并...(instanceof雀食好用)
This commit is contained in:
slhaf
2024-10-06 23:38:30 +08:00
parent 9a2165eb6d
commit e992d32ca9
4 changed files with 62 additions and 31 deletions

View File

@@ -169,6 +169,16 @@ public class MyTest {
System.out.println(str.matches(ConfigConstant.MODEL_CHANGE));
}
@Test
public void textBlockTest(){
String str = """
aliyun:
123:
111
""";
System.out.println(str);
}
@Test
public void terminalTest() throws InterruptedException {
MiraiConsoleTerminalLoader.INSTANCE.startAsDaemon(new MiraiConsoleImplementationTerminal());
@@ -176,4 +186,5 @@ public class MyTest {
PluginManager.INSTANCE.enablePlugin(App.INSTANCE);
while (true);
}
}