EDIT: that is already quite a lot of work. It's taken a while for us all to find those bugs
Pent wrote
Here's a list of all the bugfixes since the CVS:
What about the haste/slow bug?
In char.cpp:
CVS version was like:
void character::Slow()
{
doforbodyparts()(this, &bodypart::Slow);
doforequipments()(this, &item::Slow);
BeginTemporaryState(HASTE, 500 + RAND() % 1000);
}
But now the IVAN says:
void character::Slow()
{
doforbodyparts()(this, &bodypart::Slow);
doforequipments()(this, &item::Slow);
BeginTemporaryState(SLOW, 500 + RAND() % 1000);
}