mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
modules/console: Fix argument order.
This commit is contained in:
parent
7b24eace2b
commit
b518820357
1 changed files with 7 additions and 7 deletions
|
@ -2683,19 +2683,19 @@ try
|
|||
param[1]
|
||||
};
|
||||
|
||||
const auto level
|
||||
{
|
||||
param.at(2, -1)
|
||||
};
|
||||
|
||||
const auto begin
|
||||
{
|
||||
param[3]
|
||||
param[2]
|
||||
};
|
||||
|
||||
const auto end
|
||||
{
|
||||
param[4]
|
||||
param[3]
|
||||
};
|
||||
|
||||
const auto level
|
||||
{
|
||||
param.at(4, -1)
|
||||
};
|
||||
|
||||
auto &database
|
||||
|
|
Loading…
Reference in a new issue