From f1c2ac9588321aad9e075c1440b52eb155b8ba18 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 29 十一月 2024 11:37:24 +0800
Subject: [PATCH] 10263 【越南】【英文】后端支持NPC仿真实玩家战斗和快速战斗
---
ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_UnForbidTalk.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_UnForbidTalk.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_UnForbidTalk.py
index 36512e9..4670e72 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_UnForbidTalk.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_UnForbidTalk.py
@@ -40,6 +40,7 @@
# 获得并转换字符串
playerName = gmCmdDict.get(GMCommon.Def_GMKey_PlayerName, '')
playerAccID = gmCmdDict.get(GMCommon.Def_GMKey_PlayerAccID, '')
+ unForbidDevice = gmCmdDict.get("unForbidDevice", '')
playerFind = ''
# 账号禁言
@@ -54,7 +55,7 @@
# 通过账号锁定
if playerFind != '':
GMCommon.GMTool_MapServer_Query(queryType, orderId, playerFind,
- gmCmdDict, 'GMTUnForbidTalk', [])
+ gmCmdDict, 'GMTUnForbidTalk', [unForbidDevice])
return
forbidAccIP = gmCmdDict.get(GMCommon.Def_GMKey_IP, '')
--
Gitblit v1.8.0