Skip to content

Commit

Permalink
Added "clan" to default plugins and removed quotes from cvar default …
Browse files Browse the repository at this point in the history
…in README.
  • Loading branch information
MinoMino committed Nov 2, 2015
1 parent 765d91e commit 4141325
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
=========
Expand Down
2 changes: 1 addition & 1 deletion python/minqlx/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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", "!")
Expand Down

0 comments on commit 4141325

Please sign in to comment.