summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/InfoDump.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-04-04 15:44:39 +0200
committerMattes D <github@xoft.cz>2015-04-04 15:44:39 +0200
commit773ac22c30e120c4015b130517d5d446a873be93 (patch)
tree7875903023da1abe1a2023e07b771e52cb437c74 /MCServer/Plugins/InfoDump.lua
parentMerge pull request #1846 from mc-server/WorldChanging (diff)
parentFixed DumpInfo plugin (diff)
downloadcuberite-773ac22c30e120c4015b130517d5d446a873be93.tar
cuberite-773ac22c30e120c4015b130517d5d446a873be93.tar.gz
cuberite-773ac22c30e120c4015b130517d5d446a873be93.tar.bz2
cuberite-773ac22c30e120c4015b130517d5d446a873be93.tar.lz
cuberite-773ac22c30e120c4015b130517d5d446a873be93.tar.xz
cuberite-773ac22c30e120c4015b130517d5d446a873be93.tar.zst
cuberite-773ac22c30e120c4015b130517d5d446a873be93.zip
Diffstat (limited to 'MCServer/Plugins/InfoDump.lua')
-rw-r--r--MCServer/Plugins/InfoDump.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/MCServer/Plugins/InfoDump.lua b/MCServer/Plugins/InfoDump.lua
index 07a534b88..ab4dfd861 100644
--- a/MCServer/Plugins/InfoDump.lua
+++ b/MCServer/Plugins/InfoDump.lua
@@ -18,6 +18,13 @@ only that one plugin's documentation. This mode of operation doesn't require Lua
+-- If this file is called using the loadfile function the arg variable isn't filled. We have to do it manualy then.
+local arg = arg or {...}
+
+
+
+
+
-- Check Lua version. We use 5.1-specific construct when loading the plugin info, 5.2 is not compatible!
if (_VERSION ~= "Lua 5.1") then
print("Unsupported Lua version. This script requires Lua version 5.1, this Lua is version " .. (_VERSION or "<nil>"))