diff --git a/lib/fruitbot/commands.ex b/lib/fruitbot/commands.ex index 3968f39..d798af9 100644 --- a/lib/fruitbot/commands.ex +++ b/lib/fruitbot/commands.ex @@ -128,6 +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 + + 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 [ @@ -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: ["bringoo", "blocks"], handler: &Handlers.say_block_factory/1}, + # %Fruitbot.Command{aliases: ["burgerzone", "bz"], handler: &Handlers.say_burgerzone/1}, ] def all_commands(), do: @commands