mikenune
04-15-2004, 03:50 PM
OK people, I've about had it with trying to figure out if something's been done already or not. So, I was thinking that everyone who makes an update to the code, post here! That way there's no searching for updates between releases (and it maked it easier for the Devs to find stuff that they may want to put into the next release).
I'd say format should be as follows:
Path to File\ File Name (line number)
Source code.
Description of changes.
For my first example, I'll use a fix for Dual Wield for Warriors.
common\ MaxSkill.cpp (649)
case WARRIOR: case WARRIORGM:
case ROGUE: case ROGUEGM: {
// 13 210 245
r_value = ((level*5) + 5);
if ( level < 13 )
r_value = 0;
if ( level < 51 ) {
if (r_value > 210)
r_value = 210;
}
if (r_value > 245)
r_value = 245;
break;
}
I changed the level check for Dual Wield so that it will start working when it should (level 13) instead of at level 15.
I'd say format should be as follows:
Path to File\ File Name (line number)
Source code.
Description of changes.
For my first example, I'll use a fix for Dual Wield for Warriors.
common\ MaxSkill.cpp (649)
case WARRIOR: case WARRIORGM:
case ROGUE: case ROGUEGM: {
// 13 210 245
r_value = ((level*5) + 5);
if ( level < 13 )
r_value = 0;
if ( level < 51 ) {
if (r_value > 210)
r_value = 210;
}
if (r_value > 245)
r_value = 245;
break;
}
I changed the level check for Dual Wield so that it will start working when it should (level 13) instead of at level 15.