|
@@ -179,6 +179,11 @@ public class KfAppletMsgServiceImpl implements IKfAppletMsgService {
|
|
|
}
|
|
|
|
|
|
private void systemReplyHandle(Long gameId, String openId, KfRoom kfRoom) {
|
|
|
+ //判断玩家是否已接入状态, 非带接入状态, 不发送
|
|
|
+ KfSessionUser kfSessionUser = kfSessionUserService.getById(openId);
|
|
|
+ if (Objects.equals(kfSessionUser.getIsWait(), Boolean.FALSE)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
//获取自动回复配置
|
|
|
KfSystemReply kfSystemReply = kfSystemReplyService.getById(gameId);
|
|
|
if (kfSystemReply == null) {
|