Skip to content

Commit

Permalink
Client.cs: Fix ModVersionMismatch reason
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantomGamers committed Sep 7, 2021
1 parent 83ddea2 commit d04f93d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NebulaNetwork/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ private void ClientSocket_OnClose(object sender, CloseEventArgs e)
string[] versions = e.Reason.Split(';');
InGamePopup.ShowWarning(
"Mod Version Mismatch",
$"Your Nebula Multiplayer Mod is not the same as the Host version.\nYou:{versions[0]} - Remote:{versions[1]}",
$"Your mod {versions[0]} version is not the same as the Host version.\nYou:{versions[1]} - Remote:{versions[2]}",
"OK".Translate(),
Multiplayer.LeaveGame);
return;
Expand Down

0 comments on commit d04f93d

Please sign in to comment.