We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb005e commit 623a424Copy full SHA for 623a424
Assets/Scripts/UnityServices/Sessions/MultiplayerServicesFacade.cs
@@ -45,10 +45,10 @@ public void Start()
45
46
m_MultiplayerServicesInterface = m_ServiceScope.Container.Resolve<MultiplayerServicesInterface>();
47
48
- //See https://docs.unity.com/lobby/rate-limits.html
+ //See https://docs.unity.com/ugs/manual/lobby/manual/rate-limits
49
m_RateLimitQuery = new RateLimitCooldown(1f);
50
- m_RateLimitJoin = new RateLimitCooldown(3f);
51
- m_RateLimitQuickJoin = new RateLimitCooldown(10f);
+ m_RateLimitJoin = new RateLimitCooldown(1f);
+ m_RateLimitQuickJoin = new RateLimitCooldown(1f);
52
m_RateLimitHost = new RateLimitCooldown(3f);
53
}
54
0 commit comments