From 7ca71321c639d5a402b589bd6667a564bc5c24b4 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Mon, 25 Feb 2019 20:07:00 +0000 Subject: [PATCH] Proper skill id for Hour of Penitence buff. --- .../Q00500_BrothersBoundInChains.java | 4 ++-- .../Q00500_BrothersBoundInChains.java | 4 ++-- .../Q00500_BrothersBoundInChains.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java b/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java index d0033c200f..f59af59997 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java +++ b/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java @@ -44,7 +44,7 @@ public class Q00500_BrothersBoundInChains extends Quest private static final int PENITENT_MANACLES = 70806; private static final int CRUMBS_OF_PENITENCE = 70807; // Skill - private static final int HOUR_OF_PENITENCE = 55702; + private static final int HOUR_OF_PENITENCE = 15325; // Agathion private static final int SIN_EATER = 9021; // Other @@ -74,7 +74,7 @@ public class Q00500_BrothersBoundInChains extends Quest { if (player != null) { - final Skill skill = SkillData.getInstance().getSkill(15325, 1); // Hour of Penitence + final Skill skill = SkillData.getInstance().getSkill(HOUR_OF_PENITENCE, 1); // Hour of Penitence skill.activateSkill(player, player); startQuestTimer("buff", 270000, null, player); // Rebuff every 4min30 (retail like) } diff --git a/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java b/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java index d0033c200f..f59af59997 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java +++ b/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java @@ -44,7 +44,7 @@ public class Q00500_BrothersBoundInChains extends Quest private static final int PENITENT_MANACLES = 70806; private static final int CRUMBS_OF_PENITENCE = 70807; // Skill - private static final int HOUR_OF_PENITENCE = 55702; + private static final int HOUR_OF_PENITENCE = 15325; // Agathion private static final int SIN_EATER = 9021; // Other @@ -74,7 +74,7 @@ public class Q00500_BrothersBoundInChains extends Quest { if (player != null) { - final Skill skill = SkillData.getInstance().getSkill(15325, 1); // Hour of Penitence + final Skill skill = SkillData.getInstance().getSkill(HOUR_OF_PENITENCE, 1); // Hour of Penitence skill.activateSkill(player, player); startQuestTimer("buff", 270000, null, player); // Rebuff every 4min30 (retail like) } diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java index d0033c200f..f59af59997 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/quests/Q00500_BrothersBoundInChains/Q00500_BrothersBoundInChains.java @@ -44,7 +44,7 @@ public class Q00500_BrothersBoundInChains extends Quest private static final int PENITENT_MANACLES = 70806; private static final int CRUMBS_OF_PENITENCE = 70807; // Skill - private static final int HOUR_OF_PENITENCE = 55702; + private static final int HOUR_OF_PENITENCE = 15325; // Agathion private static final int SIN_EATER = 9021; // Other @@ -74,7 +74,7 @@ public class Q00500_BrothersBoundInChains extends Quest { if (player != null) { - final Skill skill = SkillData.getInstance().getSkill(15325, 1); // Hour of Penitence + final Skill skill = SkillData.getInstance().getSkill(HOUR_OF_PENITENCE, 1); // Hour of Penitence skill.activateSkill(player, player); startQuestTimer("buff", 270000, null, player); // Rebuff every 4min30 (retail like) }