From 65391d848970bfa22d1e33c54346d726e8032191 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 16 Aug 2015 21:07:00 -0400 Subject: [PATCH] fixed a small bug in tutorial --- Assets/Scripts/Models/Person.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!");