Error confirmed.
Relevant code section is in the update() method of F_4 java class:
if ((this.FM.getSpeed() > 7.0F) && (World.Rnd().nextFloat() < getAirDensityFactor(this.FM.getAltitude())))
{
if (this.FM.getOverload() > 5.7F)
{
this.pull01 = Eff3DActor.New(this, findHook("_Pull01"), null, f, "3DO/Effects/Aircraft/Pullingvapor.eff", -1.0F);
this.pull02 = Eff3DActor.New(this, findHook("_Pull02"), null, f, "3DO/Effects/Aircraft/Pullingvapor.eff", -1.0F);
this.pull03 = Eff3DActor.New(this, findHook("_Pull03"), null, f, "3DO/Effects/Aircraft/Pullingvapor.eff", -1.0F);
this.pull04 = Eff3DActor.New(this, findHook("_Pull04"), null, f, "3DO/Effects/Aircraft/Pullingvapor.eff", -1.0F);
}
if (this.FM.getOverload() <= 5.7F)
{
Eff3DActor.finish(this.pull01);
Eff3DActor.finish(this.pull02);
Eff3DActor.finish(this.pull03);
Eff3DActor.finish(this.pull04);
}
}
The problem is that the file "3DO/Effects/Aircraft/Pullingvapor.eff" is neither shipped with this mod nor with any of it's declared dependencies.
Best regards - Mike