Lobbyscreen store fixes, sub name textbox & save button in sub editor, transitioncinematic on crew death, saving reactor state, radar marker position fix, minimap fix, button sounds, artifact positioning fix, better LegUp prevention method, some music clips when round ends
This commit is contained in:
@@ -73,7 +73,12 @@ namespace Barotrauma.Tutorials
|
||||
public virtual void Update(float deltaTime)
|
||||
{
|
||||
|
||||
if (Character.Controlled != null && Character.Controlled.IsDead)
|
||||
if (Character.Controlled==null)
|
||||
{
|
||||
CoroutineManager.StopCoroutine("TutorialMode.UpdateState");
|
||||
infoBox = null;
|
||||
}
|
||||
else if (Character.Controlled.IsDead)
|
||||
{
|
||||
Character.Controlled = null;
|
||||
|
||||
@@ -147,7 +152,7 @@ namespace Barotrauma.Tutorials
|
||||
}
|
||||
|
||||
|
||||
GUI.PlayMessageSound();
|
||||
GUI.PlayUISound(GUISoundType.Message);
|
||||
|
||||
return infoBlock;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user