Add quad menu, ignore more messages
This commit is contained in:
parent
d5158eee54
commit
eccca550ef
File diff suppressed because one or more lines are too long
|
@ -195,7 +195,7 @@ function showMessageScroller(msg) {
|
||||||
var bodyFont = fontLarge;
|
var bodyFont = fontLarge;
|
||||||
g.setFont(bodyFont);
|
g.setFont(bodyFont);
|
||||||
var lines = [];
|
var lines = [];
|
||||||
if (msg.title) lines = g.wrapString(msg.title, g.getWidth()-10)
|
if (msg.title) lines = g.wrapString(msg.title, g.getWidth()-10);
|
||||||
lines = [lines[0]];
|
lines = [lines[0]];
|
||||||
var titleCnt = lines.length;
|
var titleCnt = lines.length;
|
||||||
//if (titleCnt) lines.push(""); // add blank line after title
|
//if (titleCnt) lines.push(""); // add blank line after title
|
||||||
|
@ -369,7 +369,11 @@ function checkMessages(options) {
|
||||||
var goBack = false;
|
var goBack = false;
|
||||||
while (MESSAGES.length && (
|
while (MESSAGES.length && (
|
||||||
MESSAGES[0].title == "Timer" ||
|
MESSAGES[0].title == "Timer" ||
|
||||||
|
MESSAGES[0].title == "Clock" ||
|
||||||
|
MESSAGES[0].title == "Stopwatch" ||
|
||||||
|
MESSAGES[0].title == "Navigation" ||
|
||||||
MESSAGES[0].title.startsWith("Protostable Chatspace") ||
|
MESSAGES[0].title.startsWith("Protostable Chatspace") ||
|
||||||
|
MESSAGES[0].title.includes("Jason") ||
|
||||||
MESSAGES[0].body.toLowerCase().startsWith("!chat") ||
|
MESSAGES[0].body.toLowerCase().startsWith("!chat") ||
|
||||||
MESSAGES[0].body.toLowerCase().startsWith("! chat")
|
MESSAGES[0].body.toLowerCase().startsWith("! chat")
|
||||||
)) {
|
)) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user