diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/30048-01.html b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/30048-01.html
index 85ca5d42ca..894675d4a9 100644
--- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/30048-01.html
+++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/30048-01.html
@@ -1,5 +1,5 @@
Darin:
What's more dangerous than a Knight's sword or a Wizard's staff? That thing we call love. More silently than a thief, swifter than a sunset it comes upon you and captures your soul. The minstrels were right; it's sweet and bitter all at once! One moment my heart soars to the heights of joy, the next it plummets into the depths of despair. Can you explain it?
Ah, but I see you are focused on the world of adventure, not romance. Just remember: one day you too may fall under love's irresistible spell...
-(Only characters who are level 2 and above may undertake this quest.)
+(Only characters who are level 2-5 may undertake this quest.)
\ No newline at end of file
diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/Q00001_LettersOfLove.java b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/Q00001_LettersOfLove.java
index 3784a52a76..77f2ab1835 100644
--- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/Q00001_LettersOfLove.java
+++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/quests/Q00001_LettersOfLove/Q00001_LettersOfLove.java
@@ -40,6 +40,7 @@ public class Q00001_LettersOfLove extends Quest
private static final int NECKLACE_OF_KNOWLEDGE = 49039;
// Misc
private static final int MIN_LEVEL = 2;
+ private static final int MAX_LEVEL = 5;
public Q00001_LettersOfLove()
{
@@ -47,6 +48,7 @@ public class Q00001_LettersOfLove extends Quest
addStartNpc(DARIN);
addTalkId(DARIN, ROXXY, BAULRO);
registerQuestItems(DARINS_LETTER, ROXXYS_KERCHIEF, DARINS_RECEIPT, BAULROS_POTION);
+ addCondMaxLevel(MAX_LEVEL, "30048-01.html");
}
@Override