From f0dd108599f52ad7b8b94d2da75ecc83e8a36254 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sun, 6 Mar 2016 22:45:37 +0000 Subject: [PATCH] Minor change on previous commit. --- .../Q10770_InSearchOfTheGrail.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/trunk/dist/game/data/scripts/quests/Q10770_InSearchOfTheGrail/Q10770_InSearchOfTheGrail.java b/trunk/dist/game/data/scripts/quests/Q10770_InSearchOfTheGrail/Q10770_InSearchOfTheGrail.java index 768c4be50e..63fac13139 100644 --- a/trunk/dist/game/data/scripts/quests/Q10770_InSearchOfTheGrail/Q10770_InSearchOfTheGrail.java +++ b/trunk/dist/game/data/scripts/quests/Q10770_InSearchOfTheGrail/Q10770_InSearchOfTheGrail.java @@ -33,6 +33,15 @@ public class Q10770_InSearchOfTheGrail extends Quest // NPCs private static final int LORAIN = 30673; private static final int JANSSEN = 30484; + // Monsters + private static final int[] MONSTERS = + { + 20213, // Porta + 20214, // Excuro + 20216, // Ricenseo + 20217, // Krator + 21036, // Shindebarn + }; // Items private static final ItemHolder STEEL_DOOR_GUILD = new ItemHolder(37045, 30); private static final ItemHolder EWC = new ItemHolder(951, 1); @@ -43,15 +52,6 @@ public class Q10770_InSearchOfTheGrail extends Quest private static final int SP_REWARD = 562; // Misc private static final int MIN_LEVEL = 40; - // Mobs - private static final int[] MOBNSTERS = - { - 20213, // Porta - 20214, // Excuro - 20216, // Ricenseo - 20217, // Krator - 21036, // Shindebarn - }; public Q10770_InSearchOfTheGrail() { @@ -59,7 +59,7 @@ public class Q10770_InSearchOfTheGrail extends Quest addStartNpc(LORAIN); addTalkId(LORAIN, JANSSEN); registerQuestItems(SHINING_MYSTERIOUS); - addKillId(MOBNSTERS); + addKillId(MONSTERS); addCondMinLevel(MIN_LEVEL, "noLevel.html"); addCondRace(Race.ERTHEIA, "noErtheya.html"); }