From 46a1f27ac74f4e08270f477ee1825b17d00f9c77 Mon Sep 17 00:00:00 2001 From: Tony Miller Date: Fri, 10 Jul 2026 12:03:40 -0700 Subject: [PATCH 1/2] bringoo --- lib/fruitbot/commands.ex | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/fruitbot/commands.ex b/lib/fruitbot/commands.ex index 3968f39..f1f88f6 100644 --- a/lib/fruitbot/commands.ex +++ b/lib/fruitbot/commands.ex @@ -130,6 +130,11 @@ defmodule Fruitbot.Commands do end end + def say_block_factory(_query) do + message = "wishlist professor bringoo's big dumb block factory on steam https://store.steampowered.com/app/4574960/Prof_Bringoos_Big_Dumb_Block_Factory/" + { :ok, message } + end + @commands [ %Fruitbot.Command{aliases: ["commands"], handler: &Handlers.say_commands/1}, %Fruitbot.Command{aliases: ["anysong"], handler: &Handlers.say_anysong/1}, @@ -149,6 +154,8 @@ defmodule Fruitbot.Commands do %Fruitbot.Command{aliases: ["label", "bandcamp"], handler: &Handlers.say_label/1}, %Fruitbot.Command{aliases: ["coc", "conduct"], handler: &Handlers.say_coc/1}, %Fruitbot.Command{aliases: ["backfill"], handler: &Handlers.say_backfill/1}, + %Fruitbot.Command{aliases: ["bringo", "blocks"], handler: &Handlers.say_block_factory/1}, + # %Fruitbot.Command{aliases: ["burgerzone", "bz"], handler: &Handlers.say_burgerzone/1}, ] def all_commands(), do: @commands From d5c4cea0f09c2b22b7002f5e7c9d3fc5457d25f1 Mon Sep 17 00:00:00 2001 From: Tony Miller Date: Fri, 10 Jul 2026 12:08:19 -0700 Subject: [PATCH 2/2] doops --- lib/fruitbot/commands.ex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fruitbot/commands.ex b/lib/fruitbot/commands.ex index f1f88f6..d798af9 100644 --- a/lib/fruitbot/commands.ex +++ b/lib/fruitbot/commands.ex @@ -128,11 +128,11 @@ defmodule Fruitbot.Commands do {:ok, _pid} = Fruitbot.MarkovChain.backfill(channel_id) {:ok, "Backfill started for channel #{channel_id}! Training on up to 5,000 messages. This may take a few minutes."} end - end - def say_block_factory(_query) do + def say_block_factory(_query) do message = "wishlist professor bringoo's big dumb block factory on steam https://store.steampowered.com/app/4574960/Prof_Bringoos_Big_Dumb_Block_Factory/" { :ok, message } + end end @commands [ @@ -154,7 +154,7 @@ defmodule Fruitbot.Commands do %Fruitbot.Command{aliases: ["label", "bandcamp"], handler: &Handlers.say_label/1}, %Fruitbot.Command{aliases: ["coc", "conduct"], handler: &Handlers.say_coc/1}, %Fruitbot.Command{aliases: ["backfill"], handler: &Handlers.say_backfill/1}, - %Fruitbot.Command{aliases: ["bringo", "blocks"], handler: &Handlers.say_block_factory/1}, + %Fruitbot.Command{aliases: ["bringoo", "blocks"], handler: &Handlers.say_block_factory/1}, # %Fruitbot.Command{aliases: ["burgerzone", "bz"], handler: &Handlers.say_burgerzone/1}, ]