diff --git a/changelog.txt b/changelog.txt index e9e0946d8..ca32db0d7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 12/20/2014 == +Akkadius: Updated #cvs to display RoF2 Client Stream count + == 12/19/2014 == Trevius: (RoF2) Fixed Leadership AA Purchasing and Recipe Search by correcting opcodes. Trevius: Fixed Armor Tinting (players and NPCs) that was broken during a previous update. diff --git a/world/clientlist.cpp b/world/clientlist.cpp index d0b90a266..6ef730990 100644 --- a/world/clientlist.cpp +++ b/world/clientlist.cpp @@ -1301,6 +1301,8 @@ void ClientList::SendClientVersionSummary(const char *Name) uint32 ClientSoDCount = 0; uint32 ClientUnderfootCount = 0; uint32 ClientRoFCount = 0; + uint32 ClientRoF2Count = 0; + LinkedListIterator Iterator(clientlist); @@ -1343,6 +1345,11 @@ void ClientList::SendClientVersionSummary(const char *Name) ++ClientRoFCount; break; } + case 7: + { + ++ClientRoF2Count; + break; + } default: break; } @@ -1352,7 +1359,7 @@ void ClientList::SendClientVersionSummary(const char *Name) } - zoneserver_list.SendEmoteMessage(Name, 0, 0, 13, "There are %i Titanium, %i SoF, %i SoD, %i UF, %i RoF clients currently connected.", - ClientTitaniumCount, ClientSoFCount, ClientSoDCount, ClientUnderfootCount, ClientRoFCount); + zoneserver_list.SendEmoteMessage(Name, 0, 0, 13, "There are %i Titanium, %i SoF, %i SoD, %i UF, %i RoF, %i RoF2 clients currently connected.", + ClientTitaniumCount, ClientSoFCount, ClientSoDCount, ClientUnderfootCount, ClientRoFCount, ClientRoF2Count); }