diff --git a/README.md b/README.md index 4c8071d..25a6e4d 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,13 @@ Der multifunktionale Telegram-Bot. -[Offizielle Webseite](https://brawlbot.tk) | [Entwickler auf Telegram](http://telegram.me/Brawl) | [Offizieller Kanal](https://telegram.me/brawlbot_updates) +[Offizielle Webseite](https://brawlbot.tk) | [Entwickler auf Telegram](http://telegram.me/Brawl) **KEIN SUPPORT!** | [Offizieller Kanal](https://telegram.me/brawlbot_updates) Brawlbot ist ein auf Plugins basierender Bot, der die [offizielle Telegram Bot API](http://core.telegram.org/bots/api) benutzt. Ursprünglich wurde er im Dezember 2014 auf Basis von Yagops [Telegram Bot](https://github.com/yagop/telegram-bot/) entwickelt, da aber die Entwicklung von tg-cli [zum Stillstand](https://brawlbot.tk/posts/ein-neuanfang) gekommen ist, wurden alle Plugins des bisher proprietären Brawlbots im Juni 2016 auf die Bot-API portiert und open-sourced. **Brawlbot v2 basiert auf [otouto](https://github.com/topkecleon/otouto) von Topkecleon.** +**HINWEIS::** Ich gebe KEINEN Support für das Aufsetzen des Bots! + Brawlbot v2 ist freie Software; du darfst ihn modifizieren und weiterverbreiten, allerdings musst du dich an die GNU Affero General Public License v3 halten, siehe **LICENSE** für Details. ##Anleitung diff --git a/miku/plugins/gps.lua b/miku/plugins/gps.lua index 583af18..e475c52 100644 --- a/miku/plugins/gps.lua +++ b/miku/plugins/gps.lua @@ -8,14 +8,18 @@ function gps:init(config) "google.de/maps/@([^,]*)[,%s]([^,]*)", "google.com/maps/@([^,]*)[,%s]([^,]*)", "google.de/maps/place/@([^,]*)[,%s]([^,]*)", - "google.com/maps/place/@([^,]*)[,%s]([^,]*)" + "google.com/maps/place/@([^,]*)[,%s]([^,]*)", + "google.de/maps/place/.+/@([^,]*)[,%s]([^,]*)", + "google.com/maps/place/.+/@([^,]*)[,%s]([^,]*)" } gps.inline_triggers = { "^[Gg][Pp][Ss] ([^,]*)[,%s]([^,]*)$", "google.de/maps/@([^,]*)[,%s]([^,]*)", "google.com/maps/@([^,]*)[,%s]([^,]*)", "google.de/maps/place/@([^,]*)[,%s]([^,]*)", - "google.com/maps/place/@([^,]*)[,%s]([^,]*)" + "google.com/maps/place/@([^,]*)[,%s]([^,]*)", + "google.de/maps/place/.+/@([^,]*)[,%s]([^,]*)", + "google.com/maps/place/.+/@([^,]*)[,%s]([^,]*)" } gps.doc = [[* ]]..config.cmd_pat..[[gps* __,__: Sendet Karte mit diesen Koordinaten]]