summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Handy/handy_functions.lua
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-06-14 10:57:07 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-06-14 10:57:07 +0200
commit7188a1f670d3ffeb46c2e914234f2b6009c41599 (patch)
treea4a2899805e1253a97e604d62d7def70d302f1c3 /MCServer/Plugins/Handy/handy_functions.lua
parentFixed order of initalisation (diff)
parentReduced cPluginManager code duplication (diff)
downloadcuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar.gz
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar.bz2
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar.lz
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar.xz
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.tar.zst
cuberite-7188a1f670d3ffeb46c2e914234f2b6009c41599.zip
Diffstat (limited to 'MCServer/Plugins/Handy/handy_functions.lua')
-rw-r--r--MCServer/Plugins/Handy/handy_functions.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/MCServer/Plugins/Handy/handy_functions.lua b/MCServer/Plugins/Handy/handy_functions.lua
index c142ffd08..af43f663a 100644
--- a/MCServer/Plugins/Handy/handy_functions.lua
+++ b/MCServer/Plugins/Handy/handy_functions.lua
@@ -6,7 +6,7 @@ function GetHandyVersion()
return HANDY_VERSION
end
-- Checks if handy is in proper version
-function CheckForRequiedVersion( inVersion )
+function CheckForRequiredVersion( inVersion )
if( inVersion > HANDY_VERSION ) then return false end
return true
end
@@ -213,4 +213,4 @@ end
function BoolToString( inValue )
if( inValue == true ) then return 1 end
return 0
-end \ No newline at end of file
+end