text 您的操作太过频繁,请稍后再试

This commit is contained in:
aozhiwei 2020-12-24 11:34:21 +08:00
parent 48fca9d6db
commit f6c87f880d

View File

@ -836,9 +836,9 @@ void Player::_CMGuildCreate(f8::MsgHdr& hdr, const cs::CMGuildCreate& msg)
return; return;
} }
if (App::Instance()->nowtime - last_create_guild_time_ < 5) { if (App::Instance()->nowtime - last_create_guild_time_ < 5) {
ShowErrorMsg("您的操作太过频繁,请稍后再试"); ShowErrorMsg(TEXT("operation_is_too_requent", "您的操作太过频繁,请稍后再试"));
respmsg.set_errcode(1); respmsg.set_errcode(1);
respmsg.set_errmsg("您的操作太过频繁,请稍后再试"); respmsg.set_errmsg(TEXT("operation_is_too_requent", "您的操作太过频繁,请稍后再试"));
SendMsg(respmsg); SendMsg(respmsg);
return; return;
} }