0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01:00

modules/console: Rename room__top to room as base cmd.

This commit is contained in:
Jason Volk 2020-08-22 15:34:08 -07:00
parent f8b9652555
commit e17307de13

View file

@ -8724,7 +8724,7 @@ console_cmd__rooms__head__reset(opt &out, const string_view &line)
bool console_cmd__room__events(opt &out, const string_view &line);
bool
console_cmd__room__top(opt &out, const string_view &line)
console_cmd__room(opt &out, const string_view &line)
{
const params param{line, " ",
{
@ -11571,7 +11571,7 @@ console_id__room(opt &out,
return console_cmd__room__get(out, line);
//TODO: XXX more detailed summary
return console_cmd__room__top(out, line);
return console_cmd__room(out, line);
}
//