From a3f23bc5118e8e2d03d750f06e60fdd71d42797e Mon Sep 17 00:00:00 2001
From: fernaldyl <90769501+fernaldy112@users.noreply.github.com>
Date: Fri, 14 Apr 2023 21:12:14 +0700
Subject: [PATCH] fix: quest title

---
 Assets/Scripts/Quest/QuestManager.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Assets/Scripts/Quest/QuestManager.cs b/Assets/Scripts/Quest/QuestManager.cs
index f3015d5..e33cd57 100644
--- a/Assets/Scripts/Quest/QuestManager.cs
+++ b/Assets/Scripts/Quest/QuestManager.cs
@@ -56,7 +56,7 @@ public class QuestManager : MonoBehaviour
             100
         ));
         questItems.Add(new QuestItem(
-            "Earn 100 Scores",
+            "Earn 500 Scores",
             new List<string> { "Earn 500 Score" },
             QuestItem.QuestType.SCORE,
             new List<float> { 500f },
@@ -64,7 +64,7 @@ public class QuestManager : MonoBehaviour
             100
         ));
         questItems.Add(new QuestItem(
-            "Kill the Dragon",
+            "Kill the Soul Eater",
             new List<string> { "Kill 1 Soul Eater" },
             QuestItem.QuestType.KILL,
             new List<float> { 1f },
-- 
GitLab