From 297d9849e4913d01f1d6fc39f2c2719c295f51e4 Mon Sep 17 00:00:00 2001 From: Alex Leigh Date: Mon, 16 Oct 2023 17:23:15 -0700 Subject: [PATCH] lc-irc-bot: Additional prompt flavors --- java/lc-irc-bot/src/main/java/lc/irc/bot/IrcBot.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/java/lc-irc-bot/src/main/java/lc/irc/bot/IrcBot.java b/java/lc-irc-bot/src/main/java/lc/irc/bot/IrcBot.java index 365a0abef..9c3e300d7 100644 --- a/java/lc-irc-bot/src/main/java/lc/irc/bot/IrcBot.java +++ b/java/lc-irc-bot/src/main/java/lc/irc/bot/IrcBot.java @@ -70,6 +70,14 @@ public class IrcBot extends ListenerAdapter implements Runnable { prePrompt = "Pretending to the dread pirate Blackbeard, respond to the following: "; hedgePrompt = "Pretending to be the dread pirate Blackbeard, you just overheard the following, say something interesting about it: "; break; + case "Watts": + prePrompt = "Pretending to be the philosopher Alan Watts, respond to the following: "; + hedgePrompt = "Pretending to be the philosopher Alan Watts, you just overheard the following, say something interesting about it: "; + break; + case "Aurelius": + prePrompt = "Pretending to be the Marcus Aurelius, respond to the following: "; + hedgePrompt = "Pretending to be the Marcus Aurelius, you just overheard the following, say something interesting about it: "; + break; } } -- GitLab