diff options
-rw-r--r-- | npc/soren-2/main.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/soren-2/main.txt b/npc/soren-2/main.txt index 932d8e881..d732bf871 100644 --- a/npc/soren-2/main.txt +++ b/npc/soren-2/main.txt @@ -87,13 +87,13 @@ OnSanctum: .@bonus=1; } - // Generate which monster/item would be dropped, depending on your (un)luck at ODDS (FIXME - Mobs not on par with everything else or players level) - .@mid=rand(1,10)+.@bonus; + // Generate which monster/item would be dropped, depending on your (un)luck at ODDS (FIXME - Mobs vs Player level) + .@mid=rand2(1,10)+.@bonus; switch (.@mid) { case 1: .@monsterId = AngryRedScorpion ; break; case 2: - .@monsterId = CaveMaggot ; break; // Replace! + .@monsterId = IceMaggot ; break; case 3: .@monsterId = SeaSlime ; break; case 4: |