Skip to content

Commit

Permalink
Merge pull request #513 from Wyr0X/fix-duplicate-party-chat
Browse files Browse the repository at this point in the history
Fixes #478: Remuevo mensaje duplicado en consola de chat de grupo
  • Loading branch information
RecoX authored Mar 1, 2024
2 parents d67b2d1 + e4475f7 commit e09dcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Codigo/Protocol.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5403,7 +5403,7 @@ Private Sub HandleGrupoMsg(ByVal UserIndex As Integer)

110 For i = 1 To UserList(.Grupo.Lider.ArrayIndex).Grupo.CantidadMiembros
112 Call WriteConsoleMsg(UserList(.Grupo.Lider.ArrayIndex).Grupo.Miembros(i).ArrayIndex, .name & "> " & chat, e_FontTypeNames.FONTTYPE_New_Amarillo_Verdoso)
114 Call WriteChatOverHead(UserList(.Grupo.Lider.ArrayIndex).Grupo.Miembros(i).ArrayIndex, chat, UserList(userIndex).Char.charindex, &HFF8000)
114 Call WriteChatOverHead(UserList(.Grupo.Lider.ArrayIndex).Grupo.Miembros(i).ArrayIndex, "NOCONSOLA*" & chat, UserList(userIndex).Char.charindex, &HFF8000)
116 Next i
Else
118 Call WriteConsoleMsg(UserIndex, "Grupo> No estas en ningun grupo.", e_FontTypeNames.FONTTYPE_New_GRUPO)
Expand Down

0 comments on commit e09dcb7

Please sign in to comment.