Some more randomness in level generation, info message about the radio command in mp

This commit is contained in:
Regalis
2016-04-23 17:32:52 +03:00
parent 1a96159bdb
commit 8c19adeb5e
4 changed files with 20 additions and 11 deletions

View File

@@ -955,8 +955,16 @@ namespace Barotrauma.Networking
GameMain.GameScreen.Select();
AddChatMessage("Press TAB to chat. Use ''d;'' to talk to dead players and spectators, "
+"and ''player name;'' to only send the message to a specific player.", ChatMessageType.Server);
if (myCharacter == null)
{
AddChatMessage("Press TAB to chat. Use ''d;'' to talk to dead players and spectators, "
+ "and ''player name;'' to only send the message to a specific player.", ChatMessageType.Server);
}
else
{
AddChatMessage("Press TAB to chat. Use ''r;'' to talk through the radio.", ChatMessageType.Server);
}
yield return CoroutineStatus.Success;
}