summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-06-12 16:02:22 +0200
committerMattes D <github@xoft.cz>2014-06-12 16:02:22 +0200
commit657bde3a0f77ac9a1c116047bfaef92680d948ab (patch)
tree86d093df7dbeddf44a324554450a8ba70c85cbd3
parentMerge pull request #1084 from mc-server/PlankRoads (diff)
parentFix typo in handy_functions.lua (diff)
downloadcuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar.gz
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar.bz2
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar.lz
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar.xz
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.tar.zst
cuberite-657bde3a0f77ac9a1c116047bfaef92680d948ab.zip
-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