Allow enabling direct announces
This commit is contained in:
parent
401f962bd2
commit
ec46e63642
@ -12,7 +12,7 @@ import (
|
||||
// ForwardCommand responds to fight request
|
||||
func ForwardCommand(update *telegram.Update) {
|
||||
message := ""
|
||||
if update.Message.From.ID != 788961789 {
|
||||
if update.Message.From.ID != 788961789 && !c.Config.Announces.EnableLocal {
|
||||
message := "*Смотритель более не принимает прямые запросы*\n"
|
||||
message += "Люди глупы и безрассудны. Им дали возможность позвать на помощь — но они пользуются ею, чтобы самоутвердиться. Довольно!\n"
|
||||
message += "Зовите на помощь @fw\\_zookeeper, как живого человека — через кнопку «Позвать на помощь» в игре.\n"
|
||||
|
@ -5,5 +5,6 @@ package config
|
||||
|
||||
// Announces is a struct which handles announces configuration
|
||||
type Announces struct {
|
||||
ChannelID int64 `yaml:"channel_id"`
|
||||
ChannelID int64 `yaml:"channel_id"`
|
||||
EnableLocal bool `yaml:"enable_local"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user