make help be command style

master
lance 4 years ago
parent a0e6fd0037
commit dde36088d3

@ -38,14 +38,12 @@ fn main() {
&channel, &channel,
"This feature is still being worked on.", "This feature is still being worked on.",
); );
} else if message.contains("help") { } else if message.contains("!help") {
let _ = client.send_privmsg( let _ = client.send_privmsg(
&channel, &channel,
&help_msg, &help_msg,
); );
} }
} }
}) }).unwrap();
.unwrap();
} }

Loading…
Cancel
Save