diff --git a/Assets/Scripts/Models/Person.cs b/Assets/Scripts/Models/Person.cs index aef10cc..1be3156 100644 --- a/Assets/Scripts/Models/Person.cs +++ b/Assets/Scripts/Models/Person.cs @@ -104,7 +104,7 @@ namespace DeathBook.Model public bool Kill() { - if (Online || (LevelManager.Instance.GameLevel.tutorialInt < 4)) + if (Online || ((LevelManager.Instance.GameLevel.tutorialInt < 4) && (LevelManager.Instance.GameLevel.tutorialInt >= 0))) return false; //Debug.Log("Person " + id + " died!"); diff --git a/Assets/Scripts/NetworkingSphere.cs b/Assets/Scripts/NetworkingSphere.cs index 427e839..4570323 100644 --- a/Assets/Scripts/NetworkingSphere.cs +++ b/Assets/Scripts/NetworkingSphere.cs @@ -167,7 +167,7 @@ public class NetworkingSphere : MonoBehaviour if (!_isRotatingTowardsNode || node != _selectedNode) { - if (lvl.tutorialInt > 1) + if ((lvl.tutorialInt > 1) || (lvl.tutorialInt > 1)) FocusOnNode(node); }