Skip to content

Commit 2311d07

Browse files
committed
formatting
1 parent 3a68934 commit 2311d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/BossRoom/Scripts/Infrastructure/NetworkStats.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ void FixedUpdate()
146146
if (m_TextBadNetworkConditions != null)
147147
{
148148
// Right now, we only base this warning on UTP's RTT metric, but in the future we could watch for packet loss as well, or other metrics.
149-
m_TextBadNetworkConditions.text = m_UtpRTT.Average > k_BadNetworkConditionsRTTThreshold ? "Bad Network Conditions Detected!": "";
149+
m_TextBadNetworkConditions.text = m_UtpRTT.Average > k_BadNetworkConditionsRTTThreshold ? "Bad Network Conditions Detected!" : "";
150150
var color = Color.red;
151151
color.a = Mathf.PingPong(Time.time, 1f);
152152
m_TextBadNetworkConditions.color = color;

0 commit comments

Comments
 (0)