From 72b4d3185a37a8739a04de1eaea122309b4c36cc Mon Sep 17 00:00:00 2001 From: Kaaninchen <124433727+kaaninchen@users.noreply.github.com> Date: Wed, 12 Aug 2026 19:00:46 +0200 Subject: [PATCH] emojis.py: Bus emoji --- src/data/emojis.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/data/emojis.py b/src/data/emojis.py index e6a7911..566116b 100644 --- a/src/data/emojis.py +++ b/src/data/emojis.py @@ -1,10 +1,11 @@ emoji_list = { "Fallback": "🚉", "Nahverkehr": "🚃", - "Höchstgeschwindigkeit": "🚄" + "Höchstgeschwindigkeit": "🚄", + "Bus": "🚎" } -train_types = { # Unvollständig! Benötigt testing +train_types = { # Unvollständig! "ICE": emoji_list["Höchstgeschwindigkeit"], "TGV": emoji_list["Höchstgeschwindigkeit"], @@ -12,4 +13,6 @@ train_types = { # Unvollständig! Benötigt testing "RB": emoji_list["Nahverkehr"], "ARV": emoji_list["Nahverkehr"], "BRB": emoji_list["Nahverkehr"], + + "Bus": emoji_list["Bus"] } \ No newline at end of file