mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Removal of /home
This commit is contained in:
parent
612f084831
commit
fdfd2c99ff
@ -75,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Refactored agent code file structure
|
||||
- Changed the way light strength is rendered by moving processing from shader code (GPU) to CPU code
|
||||
- Bumped tracing-subscriber to resolve [RUSTSEC-2022-0006](https://rustsec.org/advisories/RUSTSEC-2022-0006)
|
||||
- Made /home command a mod+ exclusive
|
||||
|
||||
### Removed
|
||||
|
||||
|
@ -402,7 +402,7 @@ impl ChatCommand {
|
||||
Enum("item", ITEM_SPECS.clone(), Required),
|
||||
Integer("num", 1, Optional),
|
||||
],
|
||||
"Give yourself some items",
|
||||
"Give yourself some items.\nFor an example or to auto complete use Tab.",
|
||||
Some(Admin),
|
||||
),
|
||||
ChatCommand::Goto => cmd(
|
||||
@ -441,7 +441,7 @@ impl ChatCommand {
|
||||
"Display information about commands",
|
||||
None,
|
||||
),
|
||||
ChatCommand::Home => cmd(vec![], "Return to the home town", None),
|
||||
ChatCommand::Home => cmd(vec![], "Return to the home town", Some(Moderator)),
|
||||
ChatCommand::JoinFaction => ChatCommandData::new(
|
||||
vec![Any("faction", Optional)],
|
||||
"Join/leave the specified faction",
|
||||
@ -506,7 +506,7 @@ impl ChatCommand {
|
||||
Enum("entity_config", ENTITY_CONFIGS.clone(), Required),
|
||||
Integer("num", 1, Optional),
|
||||
],
|
||||
"Spawn entity from config near you",
|
||||
"Spawn entity from config near you.\nFor an example or to auto complete use Tab.",
|
||||
Some(Admin),
|
||||
),
|
||||
ChatCommand::MakeSprite => cmd(
|
||||
|
Loading…
Reference in New Issue
Block a user