Skip to content

Commit

Permalink
Arregle lo que rompio JOPI hace 3 semanas atras.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolftein committed Jul 27, 2021
1 parent fea8629 commit 2e099ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CODIGO/Protocol.bas
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,7 @@ Private Sub HandleUserCommerceInit()

End With

frmComerciarUsu.lblMyGold.Caption = frmMain.GldLbl.Caption
frmComerciarUsu.lblMyGold.Caption = PonerPuntos(UserGLD)

Dim j As Byte

Expand Down Expand Up @@ -6658,7 +6658,7 @@ Private Sub HandleChangeUserTradeSlot()
Dim OroAEnviar As Long
OroAEnviar = Reader.ReadInt32
frmComerciarUsu.lblOroMiOferta.Caption = PonerPuntos(OroAEnviar)
frmComerciarUsu.lblMyGold.Caption = PonerPuntos(Val(frmMain.GldLbl.Caption - OroAEnviar))
frmComerciarUsu.lblMyGold.Caption = PonerPuntos(UserGLD - OroAEnviar)

For i = 1 To 6

Expand Down

0 comments on commit 2e099ae

Please sign in to comment.