[BUG] Looter Monster

ThyroDree

New member
Messages
556
Points
0
Location
Philippines
Github
bosxkate23
Emulator
Hello, I just wanna report i encounter when i am trying to level up my character on my test server. Normally i warp to pay_fild04 to kill poring,drops,poporing (Looter)

When i killed 1 monster and theres poring drops poporing or any looter monster (since i tried dropping items).

They stutter moving. Any idea? Can you try yours too? Or I just touch something in my src during edits.

I am using the latest revision which is the Fix for AI behaving weird, i just thought this is also part of it since that case the monster also stop.

screenLoki 002.jpg

 
Hi.

In src/map/unit.c find function unit_walktobl() and replace:

if (unit->walk_toxy_sub(bl) == 0 && (flag & 2) != 0) {
set_mobstate(bl);
return 1;
}


with:

if (unit->walk_toxy_sub(bl) == 0) {
if ((flag & 2) != 0)
set_mobstate(bl);

return 1;
}




And re-compile. :)

~Kenpachi

 
Last edited by a moderator:
Kenpachi's fix for this is included in the v2020.03.08+2 release I just pushed, thank you!

 
Back
Top