bug
Until we do an incremental release or a full one the following change can be made to the source to fix the crashing bug:
loottables.cpp, line 144
should start with:
int res = rand()%chancepool;
change to:
int32 res;
i = 0;
if (chancepool!=0)
{
res = rand()%chancepool;
}
else
{
res = 0;
}
|