mirror of
https://github.com/matrix-construct/construct
synced 2024-11-28 17:52:54 +01:00
modules/console: Add get/set top level shortcut cmds.
This commit is contained in:
parent
f6a5e8daf3
commit
e1df7629b5
1 changed files with 12 additions and 0 deletions
|
@ -10995,6 +10995,12 @@ console_cmd__room__get(opt &out, const string_view &line)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
console_cmd__get(opt &out, const string_view &line)
|
||||
{
|
||||
return console_cmd__room__get(out, line);
|
||||
}
|
||||
|
||||
bool
|
||||
console_cmd__room__set(opt &out, const string_view &line)
|
||||
{
|
||||
|
@ -11047,6 +11053,12 @@ console_cmd__room__set(opt &out, const string_view &line)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
console_cmd__set(opt &out, const string_view &line)
|
||||
{
|
||||
return console_cmd__room__set(out, line);
|
||||
}
|
||||
|
||||
bool
|
||||
console_cmd__room__send(opt &out, const string_view &line)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue