diff options
author | Mattes D <github@xoft.cz> | 2015-09-14 16:18:29 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-09-14 16:18:29 +0200 |
commit | 991f1a209fd845ee260825d373147c592a49467d (patch) | |
tree | 35605c89f3e210409791bff6edfb0a41a4f94de9 /Server/Plugins/APIDump/main_APIDump.lua | |
parent | Merge pull request #2474 from Erbelding/master (diff) | |
parent | APIDump: Fixed ZBS integration filenames after project rename. (diff) | |
download | cuberite-991f1a209fd845ee260825d373147c592a49467d.tar cuberite-991f1a209fd845ee260825d373147c592a49467d.tar.gz cuberite-991f1a209fd845ee260825d373147c592a49467d.tar.bz2 cuberite-991f1a209fd845ee260825d373147c592a49467d.tar.lz cuberite-991f1a209fd845ee260825d373147c592a49467d.tar.xz cuberite-991f1a209fd845ee260825d373147c592a49467d.tar.zst cuberite-991f1a209fd845ee260825d373147c592a49467d.zip |
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/APIDump/main_APIDump.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Server/Plugins/APIDump/main_APIDump.lua b/Server/Plugins/APIDump/main_APIDump.lua index 4892d477d..c0685087a 100644 --- a/Server/Plugins/APIDump/main_APIDump.lua +++ b/Server/Plugins/APIDump/main_APIDump.lua @@ -1432,9 +1432,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_api.lua", "w") + local f, err = io.open("cuberite_api.lua", "w") if (f == nil) then - LOG("Cannot open mcserver_lua.lua for writing, ZBS API will not be dumped. " .. err) + LOG("Cannot open cuberite_api.lua for writing, ZBS API will not be dumped. " .. err) return end |