From 4141325554860ffe05c49eed800b5f49abba8101 Mon Sep 17 00:00:00 2001 From: Mino Date: Mon, 2 Nov 2015 05:45:33 +0100 Subject: [PATCH] Added "clan" to default plugins and removed quotes from cvar default in README. --- README.md | 16 ++++++++-------- python/minqlx/_core.py | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8ced448..696361c 100644 --- a/README.md +++ b/README.md @@ -73,21 +73,21 @@ see the [plugins repository](https://github.com/MinoMino/minqlx-plugins). - `qlx_owner`: The SteamID64 of the server owner. This is should be set, otherwise minqlx can't tell who the owner is and will refuse to execute admin commands. - `qlx_plugins`: A comma-separated list of plugins that should be loaded at launch. - - Default: `"plugin_manager, essentials, motd, permission, ban"`. + - Default: `plugin_manager, essentials, motd, permission, ban, clan`. - `qlx_pluginsPath`: The path (either relative or absolute) to the directory with the plugins. - - Default: `"minqlx-plugins"` + - Default: `minqlx-plugins` - `qlx_database`: The default database to use. You should not change this unless you know what you're doing. - - Default: `"Redis"` + - Default: `Redis` - `qlx_commandPrefix`: The prefix used before command names in order to execute them. - - Default: `"!"` + - Default: `!` - `qlx_redisAddress`: The address to the Redis database. Can be a path if `qlx_redisUnixSocket` is `"1"`. - - Default: `"127.0.0.1"` + - Default: `127.0.0.1` - `qlx_redisDatabase`: The Redis database number. - - Default: `"0"` + - Default: `0` - `qlx_redisUnixSocket`: A boolean that determines whether or not `qlx_redisAddress` is a path to a UNIX socket. - - Default: `"0"` + - Default: `0` - `qlx_redisPassword`: The password to the Redis server, if any. - - Default: `""` + - Default: None Compiling ========= diff --git a/python/minqlx/_core.py b/python/minqlx/_core.py index ffb9b30..076b624 100644 --- a/python/minqlx/_core.py +++ b/python/minqlx/_core.py @@ -344,7 +344,7 @@ def reload_plugin(plugin): def initialize_cvars(): # Core minqlx.set_cvar_once("qlx_owner", "-1") - minqlx.set_cvar_once("qlx_plugins", "plugin_manager, essentials, motd, permission, ban") + minqlx.set_cvar_once("qlx_plugins", "plugin_manager, essentials, motd, permission, ban, clan") minqlx.set_cvar_once("qlx_pluginsPath", "minqlx-plugins") minqlx.set_cvar_once("qlx_database", "Redis") minqlx.set_cvar_once("qlx_commandPrefix", "!")