MaxLvExpGain error map-server

MikZ

New member
Messages
461
Points
0
Hello Herc developers.

May i ask for your kind assistance and knowledge as to what causes this error?
and how to fix this? thank you. (please see image below)

13233401_1178809072137899_2032648540_n.jpg

 
Issue in one of plugins.

Please build hercules with debug information.

make clean
./configure --enable-debug
make
 

because look like you disabled debug info with special key or have very old hercules.

After rebuild show error again and may be some one, who know this plugin can fix it.

 
Change

nullpo_retv(ssd);

To

if (ssd == NULL) return;

 
Back
Top