Skip to content

Commit

Permalink
Fix '/set a foo bar' not setting a to 'foo bar'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kangz committed Jan 18, 2014
1 parent 112b733 commit c0a8d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/framework/CvarSystem.cpp
Expand Up @@ -478,7 +478,7 @@ namespace Cvar {
return;
}

const std::string& value = args.Argv(nameIndex + 1);
const std::string& value = args.ConcatArgs(nameIndex + 1);

::Cvar::SetValue(name, value);
::Cvar::AddFlags(name, flags);
Expand Down

0 comments on commit c0a8d27

Please sign in to comment.