Theraze
Active member
Mafia update 9599 broke EatDrink and anything else that directly parses the consumption files. The fix is to change this:
to this:
Basically, just put string quality after int level. EatDrink should probably get a main rev update to 3.1.4 to make it work again, and we'll deal with the other changes once they've been tested up and down.
Code:
record fullness_file_entry // holds the map found in fullness.txt
{
int consumptionGain;
int level;
string adv;
string muscle;
string mysticality;
string moxie;
};
Code:
record fullness_file_entry // holds the map found in fullness.txt
{
int consumptionGain;
int level;
string quality;
string adv;
string muscle;
string mysticality;
string moxie;
};
Basically, just put string quality after int level. EatDrink should probably get a main rev update to 3.1.4 to make it work again, and we'll deal with the other changes once they've been tested up and down.