Skip to content

Commit 70331c0

Browse files
committed
Update quick actions help text in settings menu
Replaces localized strings with hardcoded English instructions for mouse actions and adds new instructions for using player names and client IDs in the quick actions section.
1 parent 775323e commit 70331c0

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/game/client/components/entity/menus_entity.cpp

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,11 +1138,16 @@ void CMenus::RenderSettingsQuickActions(CUIRect MainView)
11381138

11391139
LeftView.HSplitTop(MarginSmall, nullptr, &LeftView);
11401140
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1141-
Ui()->DoLabel(&Label, Localize("Use left mouse to select"), 14.0f, TEXTALIGN_ML);
1141+
Ui()->DoLabel(&Label, "Use left mouse to select", 14.0f, TEXTALIGN_ML);
11421142
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1143-
Ui()->DoLabel(&Label, Localize("Use right mouse to swap with selected"), 14.0f, TEXTALIGN_ML);
1143+
Ui()->DoLabel(&Label, "Use right mouse to swap with selected", 14.0f, TEXTALIGN_ML);
11441144
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1145-
Ui()->DoLabel(&Label, Localize("Use middle mouse select without copy"), 14.0f, TEXTALIGN_ML);
1145+
Ui()->DoLabel(&Label, "Use middle mouse select without copy", 14.0f, TEXTALIGN_ML);
1146+
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1147+
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1148+
Ui()->DoLabel(&Label, "To use the name of the target player do \"%s\"", 14.0f, TEXTALIGN_ML);
1149+
LeftView.HSplitTop(LineSize, &Label, &LeftView);
1150+
Ui()->DoLabel(&Label, "To get the Client Id do \"%d\"", 14.0f, TEXTALIGN_ML);
11461151

11471152
// RenderTee
11481153
{

0 commit comments

Comments
 (0)