diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-27 15:28:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-27 15:28:48 -0300 |
commit | 58b4185533ed94a695efcce14f8c4b6572ac2b06 (patch) | |
tree | 339bd256ee0e6f1e228b54d8cc3c1d209966a038 | |
parent | f9f1927b941baebfb7c6addd75a5ec63c9a11888 (diff) | |
download | serverdata-58b4185533ed94a695efcce14f8c4b6572ac2b06.tar.gz serverdata-58b4185533ed94a695efcce14f8c4b6572ac2b06.tar.bz2 serverdata-58b4185533ed94a695efcce14f8c4b6572ac2b06.tar.xz serverdata-58b4185533ed94a695efcce14f8c4b6572ac2b06.zip |
Replace cave maggot with ice maggot
-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: |