For example, ApplyRawDamage(mobile, 203)
If I kill a mobile created by for example createnpc, everything is fine
POL revision is 714
I haven't any log useful, POL just freeze
It continually call itself (add_bulk)....
void UContainer::add_bulk( int item_count_delta, int weight_delta )
{
held_item_count_ += item_count_delta;
// passert( !gflag_enforce_container_limits || (held_weight_ + weight_delta <= MAX_WEIGHT) );
held_weight_ += static_cast<unsigned short>(weight_delta);
// cout << "Adding " << delta << " stones to container " << serial << endl;
if (container != NULL)
{
container->add_bulk( 0, weight_delta );
}
}
...