Force setting quest step to 1 when dropping blue gemstone.

This commit is contained in:
MobiusDevelopment
2023-02-21 11:15:20 +02:00
parent e33c09590d
commit cc3f3d32e1
3 changed files with 3 additions and 0 deletions

View File

@@ -403,6 +403,7 @@ public class Q00999_T0Tutorial extends Quest
{ {
((Monster) npc).dropItem(player, BLUE_GEM, 1); ((Monster) npc).dropItem(player, BLUE_GEM, 1);
playSound(player, "ItemSound.quest_tutorial"); playSound(player, "ItemSound.quest_tutorial");
st.set("step", "1");
} }
return null; return null;
} }

View File

@@ -415,6 +415,7 @@ public class Q00999_T1Tutorial extends Quest
{ {
((Monster) npc).dropItem(player, BLUE_GEM, 1); ((Monster) npc).dropItem(player, BLUE_GEM, 1);
playSound(player, "ItemSound.quest_tutorial"); playSound(player, "ItemSound.quest_tutorial");
st.set("step", "1");
} }
return null; return null;
} }

View File

@@ -415,6 +415,7 @@ public class Q00999_T1Tutorial extends Quest
{ {
((Monster) npc).dropItem(player, BLUE_GEM, 1); ((Monster) npc).dropItem(player, BLUE_GEM, 1);
playSound(player, "ItemSound.quest_tutorial"); playSound(player, "ItemSound.quest_tutorial");
st.set("step", "1");
} }
return null; return null;
} }