diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index 66e77d9c8..56a644f0c 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -6329,8 +6329,8 @@ int buildin_changebase(struct script_state *st) vclass = conv_num(st,& (st->stack->stack_data[st->start+2]));
if(vclass == JOB_WEDDING)
{
- 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.
+ 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.
)
return 0;
}
|