Skip to content

Commit 5fe9d3c

Browse files
committed
tweak: Update LanGameOptionsMenu chat type for consistency
Signed-off-by: tintinhamans <[email protected]>
1 parent c5d839e commit 5fe9d3c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Generals/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/LanGameOptionsMenu.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,8 @@ WindowMsgHandledType LanGameOptionsMenuSystem( GameWindow *window, UnsignedInt m
11531153
txtInput.trim();
11541154
// Echo the user's input to the chat window
11551155
if (!txtInput.isEmpty())
1156-
TheLAN->RequestChat(txtInput, LANAPIInterface::LANCHAT_EMOTE);
1156+
// TheSuperHackers @tweak arcticdolphin 07/11/2025 changed from LANCHAT_EMOTE for consistency
1157+
TheLAN->RequestChat(txtInput, LANAPIInterface::LANCHAT_NORMAL);
11571158
}
11581159
else if ( controlID == buttonSelectMapID )
11591160
{

GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/LanGameOptionsMenu.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,8 @@ WindowMsgHandledType LanGameOptionsMenuSystem( GameWindow *window, UnsignedInt m
12561256
txtInput.trim();
12571257
// Echo the user's input to the chat window
12581258
if (!txtInput.isEmpty())
1259-
TheLAN->RequestChat(txtInput, LANAPIInterface::LANCHAT_EMOTE);
1259+
// TheSuperHackers @tweak arcticdolphin 07/11/2025 changed from LANCHAT_EMOTE for consistency
1260+
TheLAN->RequestChat(txtInput, LANAPIInterface::LANCHAT_NORMAL);
12601261
}
12611262
else if ( controlID == buttonSelectMapID )
12621263
{

0 commit comments

Comments
 (0)