Merge branch 'master' of 60.1.1.230:backend/jieling_server

back_recharge
wangyuan 2019-08-10 17:08:46 +08:00
commit 7192faf883
2 changed files with 4 additions and 3 deletions

View File

@ -45,7 +45,8 @@ public interface Global {
//返回状态
int USER_NO_EXIT_STATE = 10000; // 玩家不存在
int NO_FIND_ONESELF_STATE = 10001; // 不能查找自己
int RENAME_DIRTY = 10002;
int RENAME_SIZE_ERROR = 10003;
//跑马灯状态
int LUCKY_LUCK = 1; //吉运

View File

@ -107,12 +107,12 @@ public class PlayerLogic {
return true;
}
if (length > SGameSetting.getGameSetting().getMaxNameLength() || length < 1) {
MessageUtil.sendErrorResponse(iSession, 0, msgId, "名字长度不符!");
MessageUtil.sendErrorResponse(iSession, Global.RENAME_SIZE_ERROR, msgId, "名字长度不符!");
return true;
}
boolean result = ShieldedWordUtils.checkName( name,true);
if (!result) {
MessageUtil.sendErrorResponse(iSession, 0, msgId, "名字不合法");
MessageUtil.sendErrorResponse(iSession, Global.RENAME_DIRTY, msgId, "名字不合法");
return true;
}
return false;