You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In function buildMessageModesMap there is no messageModeMap being built if the client protocol is < 760.
And in translateMessageModeFromServer it will always return OTC::MessageInvalid if the messagemode is not found in the MessageModeMap.
I tried changing line 189 in OTClient source:
} else if(version >= 760) {
to this:
} else if(version >= 740) {
and it works using 760 message modes at least.
Please update this so 7.4 creature speak/talk can work in OTClient v8
(Same is true for text messages by the way)
The text was updated successfully, but these errors were encountered:
The problem is in OTClient source file protocolcodes.cpp.
These 2 functions:
translateMessageModeFromServer
buildMessageModesMap
In function buildMessageModesMap there is no messageModeMap being built if the client protocol is < 760.
And in translateMessageModeFromServer it will always return OTC::MessageInvalid if the messagemode is not found in the MessageModeMap.
I tried changing line 189 in OTClient source:
} else if(version >= 760) {
to this:
} else if(version >= 740) {
and it works using 760 message modes at least.
Please update this so 7.4 creature speak/talk can work in OTClient v8
(Same is true for text messages by the way)
The text was updated successfully, but these errors were encountered: