Refer to changelog

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6141 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Zido 2006-04-17 19:12:01 +00:00
parent cbea996edc
commit 736c2bd9ca
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/17 2006/04/17
* The baby check when wearing a tuxedo/dress now works [Zido]
* Fixed pet being incorrectly removed when it had intimacy 0. [Skotlex] * Fixed pet being incorrectly removed when it had intimacy 0. [Skotlex]
* Some cleanup in the TK_RUN related code. [Skotlex] * Some cleanup in the TK_RUN related code. [Skotlex]
* Added variable walk_count to unit_data to be use as a counter for cells * Added variable walk_count to unit_data to be use as a counter for cells

View File

@ -6329,8 +6329,8 @@ int buildin_changebase(struct script_state *st)
vclass = conv_num(st,& (st->stack->stack_data[st->start+2])); vclass = conv_num(st,& (st->stack->stack_data[st->start+2]));
if(vclass == JOB_WEDDING) if(vclass == JOB_WEDDING)
{ {
if (!battle_config.wedding_modifydisplay //Do not show the wedding sprites if (!battle_config.wedding_modifydisplay || //Do not show the wedding sprites
//sd->class_&JOBL_BABY //Baby classes screw up when showing wedding sprites. [Skotlex] They don't seem to anymore. sd->class_&JOBL_BABY //Baby classes screw up when showing wedding sprites. [Skotlex] They don't seem to anymore.
) )
return 0; return 0;
} }