Small bugs in AircraftLoadout table
Posted: Mon 06 Jul 2009 5:28 pm
In the AircraftLoadout table, some loadouts for the F4U1A are mistakenly described as containing napalm drop tanks, where there are fuell drop tanks.
To fix this, run the following sql-code:
UPDATE AircraftLoadout SET Description = '2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '2x154dt';
UPDATE AircraftLoadout SET Description = '1 x 178 Gallon DT + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x178dt2x154dt';
UPDATE AircraftLoadout SET Description = '1 x 500 lb General Purpose Bomb + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x5002x154dt';
UPDATE AircraftLoadout SET Description = '1 x 1000 lb General Purpose Bomb + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x10002x154dt';
Greets
Chamel
To fix this, run the following sql-code:
UPDATE AircraftLoadout SET Description = '2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '2x154dt';
UPDATE AircraftLoadout SET Description = '1 x 178 Gallon DT + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x178dt2x154dt';
UPDATE AircraftLoadout SET Description = '1 x 500 lb General Purpose Bomb + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x5002x154dt';
UPDATE AircraftLoadout SET Description = '1 x 1000 lb General Purpose Bomb + 2 x 154 Gallon DT' WHERE Obj_Long_Name = 'air.F4U1A' AND Load_Out = '1x10002x154dt';
Greets
Chamel