about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-05 14:46:34 -0500
committerJune McEnroe <june@causal.agency>2018-12-05 14:46:34 -0500
commit2797ac8abfdfa3d89120b6781157eb8164406287 (patch)
treef626957c16686e43ea0108ee28f7f085a6afc922 /input.c
parentAdd standards needed for SASL to catgirl.1 (diff)
downloadcatgirl-2797ac8abfdfa3d89120b6781157eb8164406287.tar.gz
catgirl-2797ac8abfdfa3d89120b6781157eb8164406287.zip
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 7093363..a358993 100644
--- a/input.c
+++ b/input.c
@@ -25,7 +25,7 @@
 #include "chat.h"
 
 static void privmsg(struct Tag tag, bool action, const char *mesg) {
-	if (tag.id == TagStatus.id || tag.id == TagVerbose.id) return;
+	if (tag.id == TagStatus.id || tag.id == TagRaw.id) return;
 	char *line;
 	int send;
 	asprintf(
@@ -184,7 +184,7 @@ void input(struct Tag tag, char *input) {
 	}
 
 	if (!slash) {
-		if (tag.id == TagVerbose.id) {
+		if (tag.id == TagRaw.id) {
 			ircFmt("%s\r\n", input);
 		} else {
 			privmsg(tag, false, input);