From c423a6c497c74ad9983e0800c9b5d7903c9f0399 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 16 十一月 2023 14:30:40 +0800 Subject: [PATCH] 5502 【BT0.1】线下活动配置(修复邮件参数充值额度数值bug及领奖广播参数;包含累计充值活动,单笔累充活动,多日连充,跨服充值排行活动) --- ServerPython/db/PyMongoDataServer/GMToolLogicProcess/Commands/GMT_GetForbidInfo.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/db/PyMongoDataServer/GMToolLogicProcess/Commands/GMT_GetForbidInfo.py b/ServerPython/db/PyMongoDataServer/GMToolLogicProcess/Commands/GMT_GetForbidInfo.py index c6341f0..098857b 100644 --- a/ServerPython/db/PyMongoDataServer/GMToolLogicProcess/Commands/GMT_GetForbidInfo.py +++ b/ServerPython/db/PyMongoDataServer/GMToolLogicProcess/Commands/GMT_GetForbidInfo.py @@ -96,7 +96,7 @@ accID = player.get('AccID', "") forbidLoginList.append(accID) - if (accState & pow(2, GMCommon.Def_PysForbidTalk)) > 0: + if (accState & pow(2, GMCommon.Def_PysForbidTalk)) > 0 or (accState & pow(2, GMCommon.Def_PysForbidTalkDevice)) > 0: accID = player.get('AccID', "") forbidTalkList.append(accID) -- Gitblit v1.8.0