Added PM chat button for PSS

This commit is contained in:
JappaWakka 2023-06-04 12:09:03 +02:00
parent aee6d641b1
commit 63b2134ef6
2 changed files with 4 additions and 1 deletions

View File

@ -974,7 +974,7 @@ Public Class ChatScreen
''' <summary>
''' Enters a new PM chat.
''' </summary>
Private Sub EnterPMChat(ByVal newPMChatName As String)
Public Sub EnterPMChat(ByVal newPMChatName As String)
If PMChats.Keys.Contains(newPMChatName) = False Then
PMChats.Add(newPMChatName, False)
End If

View File

@ -1210,6 +1210,9 @@
End If
Case 2
If sameServer = True Then
Dim chat As New ChatScreen(CurrentScreen)
chat.EnterPMChat(UserName)
Core.SetScreen(chat)
End If
Case 3