This commit is contained in:
shoopea 2019-05-30 12:13:06 +08:00
parent bfac2a94a2
commit c9b562dcd3

View File

@ -22,7 +22,7 @@ func clientMsgMe(userID64 int64, guildID64 int64, state string, timestamp time.T
c.GuildID64 = guildID64
c.State = state
c.LastUpdate = timestamp
if strings.Compare(cacheObjGuild[guildID64].Name, ``) != 0 && strings.Compare(c.Role, ``) == 0 {
if cacheObjGuild[``] != guildID64 && strings.Compare(c.Role, ``) == 0 {
clientSendCWMsg(userID64, "/g_roles")
}
}
@ -33,7 +33,7 @@ func clientMsgMe(userID64 int64, guildID64 int64, state string, timestamp time.T
LastUpdate: timestamp,
}
clientsCW[userID64] = &c
if strings.Compare(cacheObjGuild[guildID64].Name, ``) != 0 {
if cacheObjGuild[``] != guildID64 {
clientSendCWMsg(userID64, "/g_roles")
}