diff --git a/MCServer/Plugins/APIDump/Static/.gitignore b/MCServer/Plugins/APIDump/Static/.gitignore new file mode 100644 index 000000000..8d1c8b69c --- /dev/null +++ b/MCServer/Plugins/APIDump/Static/.gitignore @@ -0,0 +1 @@ + diff --git a/MCServer/Plugins/APIDump/main_APIDump.lua b/MCServer/Plugins/APIDump/main_APIDump.lua index ec5569f55..404e0a519 100644 --- a/MCServer/Plugins/APIDump/main_APIDump.lua +++ b/MCServer/Plugins/APIDump/main_APIDump.lua @@ -1,4 +1,3 @@ - -- main.lua -- Implements the plugin entrypoint (in this case the entire plugin) @@ -232,6 +231,12 @@ end function DumpAPIHtml() LOG("Dumping all available functions and constants to API subfolder..."); + + LOG("Moving static files.."); + local localFolder = g_Plugin:GetLocalFolder(); + for k, v in cFile:GetFolderContents(localFolder .. "/Static") do + cFile:Copy(localFolder .. "/Static/" .. v, "API/" .. v); + end LOG("Creating API tables..."); local API, Globals = CreateAPITables();