I've 'grepped' all the wdl files I can find, but 'SHADOWSPRITE' and 'SHADOWFLAT' just aren't there any more. The only problem is that SED complains and stops the build unless these are defined. Does anyone remember how this code in 'Animate.wdl' worked? Looks like its now broken.

// Desc: create a shadow below the entity
ACTION drop_shadow
{
IFDEF CAPS_FLARE;
if(VIDEO_DEPTH >= 16)
{
ent_create(SHADOWSPRITE,MY.POS,move_shadow);
}
else
{
ent_create(SHADOWFLAT,MY.POS,move_shadow);
}
IFELSE;
ent_create(SHADOWFLAT,MY.POS,move_shadow);
ENDIF;
}


Ed