diff --git a/README.md b/README.md index 73a22b2..82452f9 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,6 @@ If you start with stream, please set game config, process start config: "-enable "stopOnEntry": true, "type": "lua", "luaVersion": "luajit", - "client": false, "sourceMaps":[ //如果你想调试创意工坊的mod就开这个配置,不然不要开.因为开了之后在原来游戏目录下的mods文件夹的mod将无法调试 [ "../mods/workshop-*", @@ -107,7 +106,7 @@ if jit then local debugger = dofile(path .. "/script/debugger.lua") local Debuggee = {} Debuggee.start = function () - local host = {address = "127.0.0.1:12306", client= true} + local host = {address = "127.0.0.1:12306"} debugger:start(host):event ("autoUpdate", false) return "ok", host end