summaryrefslogtreecommitdiff
path: root/npc/018-6-3
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-09-01 16:21:31 -0300
committerJesusaves <cpntb1@ymail.com>2019-09-01 16:21:31 -0300
commitde697038ba2759070eff4b3424cd591f1bcee60c (patch)
tree70a0342363f1e55f06b31c318ae223016a0bba09 /npc/018-6-3
parentfb7c5d858f0c926fc1a19453f8a86a0b7d5c9ba9 (diff)
downloadserverdata-de697038ba2759070eff4b3424cd591f1bcee60c.tar.gz
serverdata-de697038ba2759070eff4b3424cd591f1bcee60c.tar.bz2
serverdata-de697038ba2759070eff4b3424cd591f1bcee60c.tar.xz
serverdata-de697038ba2759070eff4b3424cd591f1bcee60c.zip
Multiple comma issues
Diffstat (limited to 'npc/018-6-3')
-rw-r--r--npc/018-6-3/main.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/018-6-3/main.txt b/npc/018-6-3/main.txt
index 90601b54d..73032ac9f 100644
--- a/npc/018-6-3/main.txt
+++ b/npc/018-6-3/main.txt
@@ -69,13 +69,13 @@ function BossRoom {
// BIG ROOM: 6~12 support units
// SMALL ROOM: 5~10 support units
- AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2 BlackSlime, rand2(2,4)+.@ad);
- AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2 DarkLizard, rand2(1,2)+.@ad);
- AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2 BlackScorpion, rand2(1,2));
- AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2 Archant, rand2(1,2)-.@ad);
+ AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2, BlackSlime, rand2(2,4)+.@ad);
+ AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2, DarkLizard, rand2(1,2)+.@ad);
+ AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2, BlackScorpion, rand2(1,2));
+ AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2, Archant, rand2(1,2)-.@ad);
// Only spawn the fast Hooded Ninja on big rooms
if (.@ad) {
- AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2 HoodedNinja, any(0,0,1));
+ AreaMonsterB(getmap(), .@x1, .@y1, .@x2, .@y2, HoodedNinja, any(0,0,1));
}
}