diff options
author | Mattes D <github@xoft.cz> | 2016-12-15 21:25:33 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-12-15 21:25:33 +0100 |
commit | 506ce33101b0da34c28175e6b9a0f59577b353c2 (patch) | |
tree | 310c6b151e037869644d4749bf222ab4b23b98e8 /Server/Plugins/APIDump/main_APIDump.lua | |
parent | APIDump: Make "apicheck" errors stand out in the log. (diff) | |
download | cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar.gz cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar.bz2 cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar.lz cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar.xz cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.tar.zst cuberite-506ce33101b0da34c28175e6b9a0f59577b353c2.zip |
Diffstat (limited to 'Server/Plugins/APIDump/main_APIDump.lua')
-rw-r--r-- | Server/Plugins/APIDump/main_APIDump.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Server/Plugins/APIDump/main_APIDump.lua b/Server/Plugins/APIDump/main_APIDump.lua index da56e3444..8cefbdfc1 100644 --- a/Server/Plugins/APIDump/main_APIDump.lua +++ b/Server/Plugins/APIDump/main_APIDump.lua @@ -1891,7 +1891,7 @@ end local function CheckNewUndocumentedSymbols() -- Download the official API stats on undocumented stuff: -- (We need a blocking downloader, which is impossible with the current cNetwork API) - assert(os.execute("wget -q -O official_undocumented.lua http://apidocs.cuberite.org/_undocumented.lua")) + assert(os.execute("wget -q -O official_undocumented.lua http://apidocs.cuberite.xoft.cz/_undocumented.lua")) local OfficialStats = cFile:ReadWholeFile("official_undocumented.lua") if (OfficialStats == "") then return true, "Cannot load official stats" |