/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/ext_scripts/irc.dm
21 строка
634 B
DamianX
Fixed a bug that caused the whisper for prayers to be delayed by a few seconds (#32349)
16 апр 2022, 17:46
Не верифицирован
16 апр 2022, 17:46
74ef32c
Код
Авторство
О чём код?
#define IRC_FLAG_GENERAL "nudges" #define IRC_FLAG_ADMINHELP "ahelps" /proc/send2irc(var/flag, var/msg) set waitfor = FALSE if(config.use_irc_bot) var/a=" --key=\"[config.comms_password]\"" a += " --id=\"[config.irc_bot_server_id]\"" a += " --channel=\"[flag]\"" if(config.irc_bot_host) a+=" --host=\"[config.irc_bot_host]\"" if(config.irc_bot_port) a+=" --port=\"[config.irc_bot_port]\"" msg=replacetext(msg,"\"","\\\"") ext_python("ircbot_message.py", "[a] [escape_shell_arg(msg)]") /proc/send2mainirc(var/msg) send2irc(IRC_FLAG_GENERAL,msg) /proc/send2adminirc(var/msg) send2irc(IRC_FLAG_ADMINHELP,msg)