mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 02:27:21 -07:00
Fixes incorrect command string when adding basic console commands.
This commit is contained in:
parent
23fb885e09
commit
6484d9354d
1 changed files with 3 additions and 3 deletions
|
@ -71,9 +71,9 @@ namespace Ship {
|
|||
this->filterBuffer = new char[MAX_BUFFER_SIZE];
|
||||
strcpy(this->filterBuffer, "");
|
||||
AddCommand("help", { HelpCommand, "Shows all the commands" });
|
||||
AddCommand("help", { ClearCommand, "Clear the console history" });
|
||||
AddCommand("help", { BindCommand, "Binds key to commands" });
|
||||
AddCommand("help", { BindToggleCommand, "Bind key as a bool toggle" });
|
||||
AddCommand("clear", { ClearCommand, "Clear the console history" });
|
||||
AddCommand("bind", { BindCommand, "Binds key to commands" });
|
||||
AddCommand("bind-toggle", { BindToggleCommand, "Bind key as a bool toggle" });
|
||||
}
|
||||
|
||||
void Console::Update() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue