From 5de9f061c367cc0a8be4064e47195b49db63e5b7 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Wed, 31 Oct 2018 09:17:01 +0100 Subject: [PATCH 1/4] =?UTF-8?q?Add=20br=C3=B6tchen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.go b/bot.go index dbbb83d..f4468e9 100644 --- a/bot.go +++ b/bot.go @@ -24,6 +24,7 @@ var ( ":poultry_leg:": {"hänchen"}, ":meat_on_bone:": {"schnitzel"}, ":spaghetti:": {"nudel", "spaghetti", "pasta"}, + ":bread:": {"brot", "brötchen"} } ) @@ -121,4 +122,4 @@ func sendMealsForDate(s *discordgo.Session, t time.Time, channel string) { }, }, }) -} \ No newline at end of file +} From 08f8f0085bc2b279635976f159a2d3d3458cbbdb Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Wed, 31 Oct 2018 09:17:53 +0100 Subject: [PATCH 2/4] Extends meat on bone --- bot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.go b/bot.go index dbbb83d..549399c 100644 --- a/bot.go +++ b/bot.go @@ -22,7 +22,7 @@ var ( ":fish:": {"lachs", "filet", "fisch", "kabeljau"}, ":apple:": {"apfel", "äpfel"}, ":poultry_leg:": {"hänchen"}, - ":meat_on_bone:": {"schnitzel"}, + ":meat_on_bone:": {"schnitzel", "steak", "schwein", "huhn", "geflügel"}, ":spaghetti:": {"nudel", "spaghetti", "pasta"}, } ) @@ -121,4 +121,4 @@ func sendMealsForDate(s *discordgo.Session, t time.Time, channel string) { }, }, }) -} \ No newline at end of file +} From c8e273e71579d9087ec2d3369fa486b45ca4aff0 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 31 Oct 2018 10:39:41 +0100 Subject: [PATCH 3/4] Update bot.go --- bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.go b/bot.go index 9feebfc..5c543ce 100644 --- a/bot.go +++ b/bot.go @@ -16,7 +16,7 @@ var ( emojis = map[string][]string { ":pizza:": {"pizza"}, - ":hotdog:": {"wurst"}, + ":hotdog:": {"wurst", "würstchen", "hotdog"}, ":fries:": {"pommes"}, ":hamburger:": {"burger"}, ":fish:": {"lachs", "filet", "fisch", "kabeljau"}, From ccc765c03c0d2197ea832ae11f6f8795cdf7ac6b Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 5 Nov 2018 17:02:58 +0100 Subject: [PATCH 4/4] Fix a few things (#4) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update bot.go * Added rice * Fix Hähnchen --- bot.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bot.go b/bot.go index 5c543ce..64c6824 100644 --- a/bot.go +++ b/bot.go @@ -19,12 +19,13 @@ var ( ":hotdog:": {"wurst", "würstchen", "hotdog"}, ":fries:": {"pommes"}, ":hamburger:": {"burger"}, - ":fish:": {"lachs", "filet", "fisch", "kabeljau"}, + ":fish:": {"lachs", "filet", "fisch", "kabeljau", "hering", "makrele", "sardine", "schellfisch", "seezunge"}, ":apple:": {"apfel", "äpfel"}, - ":poultry_leg:": {"hänchen"}, + ":poultry_leg:": {"hähnchen"}, ":meat_on_bone:": {"schnitzel", "steak", "schwein", "huhn", "geflügel"}, ":spaghetti:": {"nudel", "spaghetti", "pasta"}, - ":bread:": {"brot", "brötchen"} + ":bread:": {"brot", "brötchen"}, + ":rice:": {"reis"} } )