summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-12-18 20:32:35 +0100
committerAlexander Harkness <me@bearbin.net>2016-12-18 20:32:35 +0100
commitdddfb921ee86afd352bf11def808a63b258b3459 (patch)
treee444ddf4efb36298918210552be02cf564867143
parentCMake: Output the binary to Server folder in all configurations. (#3486) (diff)
downloadcuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar.gz
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar.bz2
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar.lz
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar.xz
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.tar.zst
cuberite-dddfb921ee86afd352bf11def808a63b258b3459.zip
-rw-r--r--Server/Plugins/APIDump/main_APIDump.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Server/Plugins/APIDump/main_APIDump.lua b/Server/Plugins/APIDump/main_APIDump.lua
index 8cefbdfc1..bbd2fa19e 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.xoft.cz/_undocumented.lua"))
+ assert(os.execute("wget -q -O official_undocumented.lua https://apidocs.cuberite.org/_undocumented.lua"))
local OfficialStats = cFile:ReadWholeFile("official_undocumented.lua")
if (OfficialStats == "") then
return true, "Cannot load official stats"