This logic is twisty.
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1024 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -727,10 +727,14 @@ public class SubtitleChatOverlay extends ChatOverlay
|
|||||||
|
|
||||||
} else if (message instanceof UserMessage) {
|
} else if (message instanceof UserMessage) {
|
||||||
int type = _logic.decodeType(localtype);
|
int type = _logic.decodeType(localtype);
|
||||||
// factor in the mode
|
|
||||||
if (type != 0) {
|
if (type != 0) {
|
||||||
|
// factor in the mode
|
||||||
type = _logic.adjustTypeByMode(((UserMessage) message).mode, type);
|
type = _logic.adjustTypeByMode(((UserMessage) message).mode, type);
|
||||||
|
if (type != 0) {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// if we're showing from history, include specialized chat messages
|
// if we're showing from history, include specialized chat messages
|
||||||
if (history) {
|
if (history) {
|
||||||
return ChatLogic.SPECIALIZED;
|
return ChatLogic.SPECIALIZED;
|
||||||
|
|||||||
Reference in New Issue
Block a user