Just grabbed this update and I have a couple of questions.
Firstly what is EffectBox for? I can see it animates with the throttle setting, but I'm not sure what it is for (and hence I am not sure if my mod tool is handling it correctly)
Secondly I think you have a bug in the weapon loadouts
/* 551 */ Aircraft.weaponsRegister(class1, "2xFAB100", new String[] {
/* 552 */ "MGunNull 1", 0, 0, 0, 0, "MiG21WingPylon 1", "MiG21WingPylon 1",
/* 553 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, "BombGunFAB100 1", "BombGunFAB100 1" });
I think you are one 0 short, i.e. it should be
/* 551 */ Aircraft.weaponsRegister(class1, "2xFAB100", new String[] {
/* 552 */ "MGunNull 1", 0, 0, 0, 0, "MiG21WingPylon 1", "MiG21WingPylon 1",
/* 553 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "BombGunFAB100 1", "BombGunFAB100 1" });
Without that the two weapons appear on top of each other.
With that fix in it looks like this.
Love this aircraft