diff options
author | Mattes D <github@xoft.cz> | 2014-03-01 14:54:28 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-01 14:54:28 +0100 |
commit | 481552e450fb4ae6c7c6fe0df4c400b83f6396c3 (patch) | |
tree | 546585401543b6cff45b37dda55ea38c4e59b734 /MCServer | |
parent | DoxyFile: Updated after all the folder renaming. (diff) | |
parent | Using comma instead of string concatenation. (diff) | |
download | cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar.gz cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar.bz2 cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar.lz cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar.xz cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.tar.zst cuberite-481552e450fb4ae6c7c6fe0df4c400b83f6396c3.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/InfoDump.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MCServer/Plugins/InfoDump.lua b/MCServer/Plugins/InfoDump.lua index 8fac09d60..e7ed157e3 100644 --- a/MCServer/Plugins/InfoDump.lua +++ b/MCServer/Plugins/InfoDump.lua @@ -578,7 +578,10 @@ local function DumpPluginInfoForum(a_PluginFolder, a_PluginInfo) DumpAdditionalInfoForum(a_PluginInfo, f); DumpCommandsForum(a_PluginInfo, f); DumpPermissionsForum(a_PluginInfo, f); - + if (a_PluginInfo.SourceLocation ~= nil) then + f:write("[b][color=blue]Source:[/color] [url=", a_PluginInfo.SourceLocation, "]Link[/url][/b]"); + end + f:close(); end |