Skip to content

Commit 6679da2

Browse files
committed
Added period to GenericDisconnect status message
1 parent 2881284 commit 6679da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/BossRoom/Scripts/Client/UI/ConnectionStatusMessageUIManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void OnConnectStatus(ConnectStatus status)
4646
PopupPanel.ShowPopupPanel("Connection Failed", "Server and client builds are not compatible. You cannot connect a release build to a development build or an in-editor session.");
4747
break;
4848
case ConnectStatus.GenericDisconnect:
49-
PopupPanel.ShowPopupPanel("Disconnected From Host", "The connection to the host was lost");
49+
PopupPanel.ShowPopupPanel("Disconnected From Host", "The connection to the host was lost.");
5050
break;
5151
default:
5252
Debug.LogWarning($"New ConnectStatus {status} has been added, but no connect message defined for it.");

0 commit comments

Comments
 (0)