diff --git a/Assets/Scripts/Objective/Level03/Objective03.cs b/Assets/Scripts/Objective/Level03/Objective03.cs
index 2ff5da5117c18cd223661d3d40b4b57fdf0a3a9d..08915ae55aede651bdd035025e477166c0931b2b 100644
--- a/Assets/Scripts/Objective/Level03/Objective03.cs
+++ b/Assets/Scripts/Objective/Level03/Objective03.cs
@@ -15,9 +15,9 @@ public class Objective03 : Objective
     
     public override bool IsCompleted()
     {
-        int krocoTreshold = 1;
-        int kepalaKrocoTreshold = 0;
-        int jendralTreshold = 0;
+        int krocoTreshold = 15;
+        int kepalaKrocoTreshold = 10;
+        int jendralTreshold = 3;
         
         int krocoKilled = GameStateManager.Instance.krocoKill - curKrocoKilled;
         KrocoUI.SetText("Kroco: " +krocoKilled.ToString()+"/"+krocoTreshold);
@@ -26,7 +26,7 @@ public class Objective03 : Objective
         KepalaKrocoUI.SetText("Kepala Kroco: "+kepalaKrocoKilled.ToString()+"/"+kepalaKrocoTreshold);
         
         int jendralKilled = GameStateManager.Instance.jendralKill - curJendralKilled;
-        JendralUI.SetText("Jendral: "+krocoKilled.ToString()+"/"+jendralTreshold);
+        JendralUI.SetText("Jendral: "+jendralKilled.ToString()+"/"+jendralTreshold);
 
         if (krocoKilled >= krocoTreshold && kepalaKrocoKilled >= kepalaKrocoTreshold && jendralKilled >= jendralTreshold)
         {