summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-12-15 21:25:33 +0100
committerMattes D <github@xoft.cz>2016-12-15 21:25:33 +0100
commit506ce33101b0da34c28175e6b9a0f59577b353c2 (patch)
tree310c6b151e037869644d4749bf222ab4b23b98e8
parentAPIDump: Make "apicheck" errors stand out in the log. (diff)
downloadcuberite-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
-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 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"