Skip to content

Commit

Permalink
Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in Generi…
Browse files Browse the repository at this point in the history
…cItem2 command
  • Loading branch information
Csantucci committed Sep 27, 2022
1 parent eb99b75 commit 23c491e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -185,7 +185,7 @@ public override void InitializeUserInputCommands()
UserInputCommands.Add(UserCommand.ControlCabRadio, new Action[] { Noop, () => new CabRadioCommand(Viewer.Log, !Locomotive.CabRadioOn) });
UserInputCommands.Add(UserCommand.ControlDieselHelper, new Action[] { Noop, () => new ToggleHelpersEngineCommand(Viewer.Log) });
UserInputCommands.Add(UserCommand.ControlGenericItem1, new Action[] { Noop, () => new ToggleGenericItem1Command(Viewer.Log) });
UserInputCommands.Add(UserCommand.ControlGenericItem2, new Action[] { Noop, () => new ToggleGenericItem1Command(Viewer.Log) });
UserInputCommands.Add(UserCommand.ControlGenericItem2, new Action[] { Noop, () => new ToggleGenericItem2Command(Viewer.Log) });
UserInputCommands.Add(UserCommand.ControlTCSGeneric1, new Action[] {
() => new TCSButtonCommand(Viewer.Log, false, 0),
() => {
Expand Down

0 comments on commit 23c491e

Please sign in to comment.