summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/magic/dragokin.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/magic/dragokin.txt b/npc/magic/dragokin.txt
index 531babc4f..2a8cb89b0 100644
--- a/npc/magic/dragokin.txt
+++ b/npc/magic/dragokin.txt
@@ -12,8 +12,8 @@
OnCall:
// Other requeriments: 5x Dragon Scale or Demure Axe
- if (!(countitem(DragonScales) >= 5 || countitem(DemureAxe))) {
- dispbottom l("You need 5x @@ to cast this skill.", getitemlink(DragonScales));
+ if (!(countitem(DragonScales) >= 4 || countitem(DemureAxe))) {
+ dispbottom l("You need 4x @@ to cast this skill.", getitemlink(DragonScales));
end;
}
@@ -35,7 +35,7 @@ OnCall:
// Destroy reagents
if (!countitem(DemureAxe))
- delitem DragonScale, 5;
+ delitem DragonScale, 4;
// set cooldown
@dragokin_at=gettimetick(2);