Skip to content

Commit

Permalink
fix: Make SendToReady non-ambiguous (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGadget committed Mar 21, 2020
1 parent ad10ca1 commit b627779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirror/Runtime/NetworkServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ internal static void ActivateHostScene()
/// <param name="msg">Message structure.</param>
/// <param name="channelId">Transport channel to use</param>
/// <returns></returns>
public static bool SendToReady<T>(NetworkIdentity identity, T msg, int channelId = Channels.DefaultReliable) where T : IMessageBase
public static bool SendToReady<T>(NetworkIdentity identity, T msg, int channelId) where T : IMessageBase
{
return SendToReady(identity, msg, true, channelId);
}
Expand Down

0 comments on commit b627779

Please sign in to comment.