diff options
Diffstat (limited to 'npc/025-1/ctrl.c')
-rw-r--r-- | npc/025-1/ctrl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index d90ed9deb..c816432c4 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -398,11 +398,11 @@ function spawnCore { } freeloop(true); // Level 40~60 Section - for (.@i = 0; .@i < .@am*3; ++.@i) { + for (.@i = 0; .@i < .@am*2; ++.@i) { spawnMob(any(Tipiou, Pollet, Wolvern, FireSkull, DarkLizard, BlackScorpion, EarthFairy, FireFairy, WaterFairy, WindFairy, PoisonFairy, DustGatling, DustRifle, DustRevolver, MountainSnake, HoodedNinja, ForestMushroom, GoldenScorpion, Yeti), .@x1, .@y1, .@x2, .@y2); } // Level 60~80 Section - for (.@i = 0; .@i < .@am*2; ++.@i) { + for (.@i = 0; .@i < .@am*3/2+1; ++.@i) { spawnMob(any(Yeti, WickedMushroom, Archant, Scar, Crafty, AzulSkullSlime, YellowSkullSlime, Forain, GreenDragon, Michel, EliteDuck, Troll, Moonshroom, Terranite), .@x1, .@y1, .@x2, .@y2); } // Level 80~100 section |