mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
format more strings
This commit is contained in:
parent
1fdac51082
commit
bf96c527ad
@ -461,7 +461,7 @@ internal class MenuManager : MonoBehaviour, IAddComponentOnStart
|
||||
Delay.RunWhen(() => TimeLoop._initialized, QSBNetworkManager.singleton.StartHost);
|
||||
};
|
||||
|
||||
OpenInfoPopup(QSBLocalisation.Current.CopyProductUserIDToClipboard
|
||||
OpenInfoPopup(string.Format(QSBLocalisation.Current.CopyProductUserIDToClipboard, productUserId)
|
||||
, QSBLocalisation.Current.Yes
|
||||
, QSBLocalisation.Current.No);
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ public class PlayerJoinMessage : QSBMessage
|
||||
|
||||
var player = QSBPlayerManager.GetPlayer(From);
|
||||
player.Name = PlayerName;
|
||||
DebugLog.ToAll($"{player.Name} joined!", MessageType.Info);
|
||||
DebugLog.ToAll(string.Format(QSBLocalisation.Current.PlayerJoinedTheGame, player.Name), MessageType.Info);
|
||||
DebugLog.DebugWrite($"{player} joined. qsbVersion:{QSBVersion}, gameVersion:{GameVersion}, dlcInstalled:{DlcInstalled}", MessageType.Info);
|
||||
}
|
||||
|
||||
@ -126,6 +126,5 @@ public class PlayerJoinMessage : QSBMessage
|
||||
{
|
||||
var player = QSBPlayerManager.GetPlayer(QSBPlayerManager.LocalPlayerId);
|
||||
player.Name = PlayerName;
|
||||
DebugLog.ToAll($"Connected to server as {player.Name}.", MessageType.Info);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user