ChatMode.NEW_STEAM_CHAT's value is actually 2 to utilize the new unified chat features.
Current Work around is to send a protobuf to steam to enable this feature, usually during or after LoggedOnCallback callback.
var uiMode = new ClientMsgProtobuf<SteammessagesClientserver2.CMsgClientUIMode.Builder>(
SteammessagesClientserver2.CMsgClientUIMode.class,
EMsg.ClientCurrentUIMode
);
uiMode.getBody().setChatMode(2);
steamClient.send(uiMode);
Checklist
[x] Code compiles correctly
[x] All tests passing
[x] Samples run successfully
[x] Extended the README / documentation, if necessary
Description
ChatMode.NEW_STEAM_CHAT's value is actually 2 to utilize the new unified chat features.
Current Work around is to send a protobuf to steam to enable this feature, usually during or after
LoggedOnCallback
callback.Checklist