diff options
author | madmaxoft <github@xoft.cz> | 2014-03-31 18:25:00 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-31 18:25:00 +0200 |
commit | f38a009b3cc5caf25d11496fda5caf75531127d0 (patch) | |
tree | 1a0d0271cfb2eaf23d917cbfb15950f17b607454 /MCServer/Plugins | |
parent | cCompositeChat has a MessageType param in the constructor. (diff) | |
download | cuberite-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 |
Diffstat (limited to 'MCServer/Plugins')
-rw-r--r-- | MCServer/Plugins/APIDump/main_APIDump.lua | 4 |
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 |