summaryrefslogtreecommitdiff
path: root/npc/functions/mobhunter.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/mobhunter.txt')
-rw-r--r--npc/functions/mobhunter.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt
index ce68ec0e5..527aacf3c 100644
--- a/npc/functions/mobhunter.txt
+++ b/npc/functions/mobhunter.txt
@@ -32,6 +32,9 @@ function script GHQ_GetQuestIDByMonsterID {
case Duck:
return 9;
break;
+ case Bat:
+ return 10;
+ break;
default:
return Exception("GHQ GQID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL);
break;
@@ -69,6 +72,9 @@ function script GHQ_GetMonsterIDByQuestID {
case 9:
return Duck;
break;
+ case 10:
+ return Bat;
+ break;
default:
return Exception("GHQ GMID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL);
break;