summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Handy/handy_functions.lua
diff options
context:
space:
mode:
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