diff --git a/README.md b/README.md index 2cd1ae9..0e5714e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ lip install --upgrade gitea.litebds.com/LiteLDev/legacy-script-engine-python 2. Run the server, then the plugins will be migrated to LeviLamina plugin manifest automatically 3. To load them, you need to restart the server -For more information, please refer to [the documentation](https://legacy-script-engine.levimc.org) +For more information, please refer to [the documentation](https://lse.levimc.org) ## Some helpful project for plugin development diff --git a/README.zh.md b/README.zh.md index ed7ae9f..a1b3fe7 100644 --- a/README.zh.md +++ b/README.zh.md @@ -34,7 +34,7 @@ lip install --upgrade gitea.litebds.com/LiteLDev/legacy-script-engine-python 2. 运行服务器,然后插件将自动迁移到 LeviLamina 插件清单中 3. 重启服务器后,插件就会被加载 -更多信息请参见[文档](https://legacy-script-engine.levimc.org) +更多信息请参见[文档](https://lse.levimc.org) ## 一些对插件开发有帮助的项目 diff --git a/src/legacy/api/LoggerAPI.cpp b/src/legacy/api/LoggerAPI.cpp index 3736b26..a92e15e 100644 --- a/src/legacy/api/LoggerAPI.cpp +++ b/src/legacy/api/LoggerAPI.cpp @@ -141,7 +141,7 @@ Local LoggerClass::setConsole(const Arguments& args) { if (args.size() >= 2) { getEngineOwnData()->logger->getSink(0)->setFlushLevel( static_cast(args[1].asNumber().toInt32() - 1) - ); // See LSE's definition https://legacy-script-engine.levimc.org/apis/ScriptAPI/Logger/ + ); // See LSE's definition https://lse.levimc.org/apis/ScriptAPI/Logger/ } if (!args[0].asBoolean().value()) { getEngineOwnData()->logger->getSink(0)->setFlushLevel(LogLevel::Off);