[Change] Updated TODO.

This commit is contained in:
Allanis 2013-08-08 16:35:45 +01:00
parent da83f105e0
commit 21ca77d439
2 changed files with 1 additions and 1 deletions

1
TODO
View File

@ -2,7 +2,6 @@ Vital:
-- Get a good sound system working!
-- Better AI.
-- Improved combat efficiency.
-- Smarter missiles -> PID if possible.
-- Save improvements.
-- Save changes to universe in diff format.
-- Possibly predefine changes for easy update.

View File

@ -747,6 +747,7 @@ void pilot_calcStats(Pilot* pilot) {
pilot->afterburner = &pilot->outfits[i]; /* Set afterburner. */
else if(outfit_isJammer(o)) { /* Jammer. */
if(pilot->jam_chance < o->u.jam.chance) { /* Substitude. */
/* TODO: Make more jammers improve overall. */
pilot->jam_range = o->u.jam.range;
pilot->jam_chance = o->u.jam.chance;
}