diff --git a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs index 53bd4ada67..f39213a89d 100644 --- a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs @@ -133,7 +133,7 @@ namespace OpenRA.Widgets return true; } - if (e.KeyChar == '\b') + if (e.KeyChar == '\b' || e.KeyChar == (char)127) { GotoNextBase(); return true;