summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2014-10-22 14:55:21 +0200
committerAlexander Harkness <me@bearbin.net>2014-10-22 14:55:21 +0200
commit7cda6f9346d190186ec7c63461a86da7f1f8aaf7 (patch)
tree0cda18bee5c17cedb7ee6f2161fec2a3ed8a5cfe
parentAdded inheritance information to Lua docs for projectiles. (diff)
downloadcuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar.gz
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar.bz2
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar.lz
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar.xz
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.tar.zst
cuberite-7cda6f9346d190186ec7c63461a86da7f1f8aaf7.zip
-rw-r--r--MCServer/webadmin/template.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/webadmin/template.lua b/MCServer/webadmin/template.lua
index 84a50b055..05ca224b1 100644
--- a/MCServer/webadmin/template.lua
+++ b/MCServer/webadmin/template.lua
@@ -33,7 +33,7 @@ function GetDefaultPage()
local AllPlugins = PM:GetAllPlugins()
for key,value in pairs(AllPlugins) do
if( value ~= nil and value ~= false ) then
- Content = Content .. "<li>" .. key .. " V." .. value:GetVersion() .. "</li>"
+ Content = Content .. "<li>" .. key .. " (version " .. value:GetVersion() .. ")</li>"
end
end