diff --git a/ramenkan.py b/ramenkan.py index 8f0bb31..59878df 100755 --- a/ramenkan.py +++ b/ramenkan.py @@ -160,7 +160,7 @@ class Ramen: """Wrap around the Mastodon library's toot command for basic error handling.""" try: - self.masto.toot(txt) + self.masto.toot(self.misc["toot"]["prefix"] + " " + txt) self.irc.reply(cxt, txt + " " + self.misc["toot"]["success"]) except: self.irc.reply(cxt, self.misc["toot"]["error"]) diff --git a/ramenkan/dishes.yml b/ramenkan/dishes.yml index 4758ed4..ae318f0 100644 --- a/ramenkan/dishes.yml +++ b/ramenkan/dishes.yml @@ -10,6 +10,8 @@ broth: - fish - gyokai - roasted tuna + - milk + - curry and milk broth-veggie: - miso @@ -94,7 +96,7 @@ meat: tapa: - gyoza # dumplings (fried) - - karaage # fried chicken + - karaage # fried chicken - tako wasabi # marinated octopus - takoyaki # octopus balls - corn and shrimp salad diff --git a/ramenkan/misc.yml b/ramenkan/misc.yml index 03132f7..32d43fe 100644 --- a/ramenkan/misc.yml +++ b/ramenkan/misc.yml @@ -23,5 +23,6 @@ botsnack: - "Ramen time anytime! 自o(´▽` )/" toot: + prefix: "Now serving:" success: "Now shared with Mastodon! (^v^)" error: "Hyuuuuu! Sorry, I can't seem to toot right now. Ask me again later."