Skip to content

Commit

Permalink
Fix global.json
Browse files Browse the repository at this point in the history
  • Loading branch information
doombubbles committed Apr 14, 2024
1 parent 749b98f commit edfff73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static void SendMessageEx<T>(this NKMultiGameInterface nkGI, T objectToSe
public static void SendMessage(this NKMultiGameInterface nkGI, String objectToSend, byte? peerId = null,
string code = "")
{
var message = MessageUtils.CreateMessage(objectToSend, code);
var message = MessageUtils.CreateMessageEx(objectToSend, code);
if (peerId.HasValue)
nkGI.SendToPeer(peerId.Value, message);
else
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMajor",
"rollForward": "latestMinor",
"allowPrerelease": true
}
}

0 comments on commit edfff73

Please sign in to comment.