Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,5 @@ static int FRAME_GROUPING_CAP = 64;
#define GENERALS_ONLINE_ALLOW_ALL_SETTINGS_FOR_STATS_MATCHES 1

#define GENERALS_ONLINE_DISABLE_STD_FROM_CHARS_PARSING 1

#define GENERALS_ONLINE_DISABLE_AUTO_ACCEPT 1
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ static void StartPressed()
else if (allHaveMap)
{
// send HWS chat message
#if !defined(GENERALS_ONLINE_DISABLE_AUTO_ACCEPT)
if (!pLobbyInterface->HasAutoReadyCountdown())
{
// local msg
Expand All @@ -1239,6 +1239,12 @@ static void StartPressed()
UnicodeString strInform = UnicodeString(L"You have already informed players you want to start. A countdown has begun after which they will be marked as ready.");
GadgetListBoxAddEntryText(listboxGameSetupChat, strInform, GameSpyColor[GSCOLOR_DEFAULT], -1, -1);
}
#else
// notify players that the host wants to start.
UnicodeString strInform = TheGameText->fetch("GUI:HostWantsToStart");
pLobbyInterface->SendAnnouncementMessageToCurrentLobby(strInform, false);
GadgetListBoxAddEntryText(listboxGameSetupChat, TheGameText->fetch("GUI:NotifiedStartIntent"), GameSpyColor[GSCOLOR_DEFAULT], -1, -1);
#endif
}

}
Expand Down
Loading