summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-31 18:25:00 +0200
committermadmaxoft <github@xoft.cz>2014-03-31 18:25:00 +0200
commitf38a009b3cc5caf25d11496fda5caf75531127d0 (patch)
tree1a0d0271cfb2eaf23d917cbfb15950f17b607454
parentcCompositeChat has a MessageType param in the constructor. (diff)
downloadcuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar.gz
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar.bz2
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar.lz
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar.xz
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.tar.zst
cuberite-f38a009b3cc5caf25d11496fda5caf75531127d0.zip
-rw-r--r--MCServer/Plugins/APIDump/main_APIDump.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/MCServer/Plugins/APIDump/main_APIDump.lua b/MCServer/Plugins/APIDump/main_APIDump.lua
index 7455c3cd2..52199740b 100644
--- a/MCServer/Plugins/APIDump/main_APIDump.lua
+++ b/MCServer/Plugins/APIDump/main_APIDump.lua
@@ -1408,9 +1408,9 @@ end
--- Dumps the entire API table into a file in the ZBS format
local function DumpAPIZBS(a_API)
LOG("Dumping ZBS API description...")
- local f, err = io.open("mcserver.lua", "w")
+ local f, err = io.open("mcserver_api.lua", "w")
if (f == nil) then
- LOG("Cannot open mcserver.lua for writing, ZBS API will not be dumped. " .. err)
+ LOG("Cannot open mcserver_lua.lua for writing, ZBS API will not be dumped. " .. err)
return
end