mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Only 1 parameter for forceMissionProgress
This commit is contained in:
parent
d42bb07919
commit
70ea375a94
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ using namespace std;
|
||||||
|
|
||||||
NLMISC_COMMAND( forceMissionProgress,"debug command used to trigger debug commands","<user>" )
|
NLMISC_COMMAND( forceMissionProgress,"debug command used to trigger debug commands","<user>" )
|
||||||
{
|
{
|
||||||
if (args.empty() || args.size() > 3)
|
if (args.size() != 1)
|
||||||
return false;
|
return false;
|
||||||
CEntityId id;
|
CEntityId id;
|
||||||
id.fromString( args[0].c_str() );
|
id.fromString( args[0].c_str() );
|
||||||
|
|
Loading…
Reference in a new issue