summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-08-13 10:46:15 +0200
committerAlexander Harkness <bearbin@gmail.com>2013-08-13 10:46:15 +0200
commit40094c2620248c0f79df12e5860bf6eb26614f75 (patch)
treeaa5916d683f1b77d433f207162c970f43e3bbadc
parentFinished up the main plugin. (diff)
downloadcuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.gz
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.bz2
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.lz
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.xz
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.zst
cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.zip
-rw-r--r--main.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.lua b/main.lua
index da1fdda7d..2b6f77da6 100644
--- a/main.lua
+++ b/main.lua
@@ -1,8 +1,8 @@
-- This plugin copyright Alexander Harkness 2013, licensed under the MIT license.
-- Configuration
-g_ServerLang = "english"
-g_ConsoleLang = "english"
+g_ServerLang = "en"
+g_ConsoleLang = "en"
-- Global Variables
g_Plugin = nil
@@ -23,7 +23,7 @@ function Initialize( Plugin )
Plugin:SetVersion( 1 )
-- This is the place for commands!
- g_PluginManager:BindCommand("/language", "transapi.setlang", HandleLanguageCommand, " - Set your preferred language.")
+ g_PluginManager:BindCommand("/language", "transapi.setlang", HandleLanguageCommand, " - Set your preferred language (use ISO 639-1)")
-- Load the userdata file.
g_UserData = cIniFile( g_PluginDir .. "/userdata.ini" )