This commit is contained in:
aozhiwei 2024-04-12 17:08:04 +08:00
parent b62ae9ccf9
commit be59e9987b
2 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,8 @@ const (
LOG_TYPE_GUILD_CREATE_CONSUME_BEGIN = "guild.create_consume.begin" LOG_TYPE_GUILD_CREATE_CONSUME_BEGIN = "guild.create_consume.begin"
LOG_TYPE_GUILD_CREATE_CONSUME_END = "guild.create_consume.end" LOG_TYPE_GUILD_CREATE_CONSUME_END = "guild.create_consume.end"
LOG_TYPE_GUILD_ACC = "guild.create_consume.end"
) )
func (this* dbLogMgr) Init() { func (this* dbLogMgr) Init() {

View File

@ -166,6 +166,7 @@ func (this *guild) asyncLeave(accountId string, cb func(int32, string)) {
cb(500, "server internal error") cb(500, "server internal error")
return return
} }
nextLeader.guildJob = constant.GuildMemberLevelLeader
cb(0, "") cb(0, "")
return return
}) })