From 21ca77d4393e1bb63ae8729f68118ea142ea3aaf Mon Sep 17 00:00:00 2001 From: Allanis <allanis@saracraft.net> Date: Thu, 8 Aug 2013 16:35:45 +0100 Subject: [PATCH] [Change] Updated TODO. --- TODO | 1 - src/pilot.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO b/TODO index c14c72f..7f8058f 100644 --- a/TODO +++ b/TODO @@ -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. diff --git a/src/pilot.c b/src/pilot.c index 9e4a6b4..645ba01 100644 --- a/src/pilot.c +++ b/src/pilot.c @@ -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; }