From 60675de584fc6e55fbf30f63a8c5dc83f6c9b52a Mon Sep 17 00:00:00 2001 From: Ragnvald Maartmann-Moe IV Date: Sun, 3 Mar 2002 05:18:53 +0000 Subject: [PATCH] Fix complaints during make due to lack of new lines at end of file. --- paroxysm/quakeworld/poxdefs.qc | 2 +- paroxysm/quakeworld/sheilds.qc | 2 +- paroxysm/quakeworld/spectate.qc | 2 +- paroxysm/quakeworld/subs.qc | 3 +-- paroxysm/quakeworld/targid.qc | 8 +++----- 5 files changed, 7 insertions(+), 10 deletions(-) diff --git a/paroxysm/quakeworld/poxdefs.qc b/paroxysm/quakeworld/poxdefs.qc index 7d1fc5e..c291778 100644 --- a/paroxysm/quakeworld/poxdefs.qc +++ b/paroxysm/quakeworld/poxdefs.qc @@ -62,4 +62,4 @@ void(entity client, string s1, string s2, string s3, string s4) centerprint4 = # .float cshift_finished; .float cshift_off; //POX 1.2 - allows idtarget state to be saved across levelchanges -.float target_id_temp; \ No newline at end of file +.float target_id_temp; diff --git a/paroxysm/quakeworld/sheilds.qc b/paroxysm/quakeworld/sheilds.qc index 2378870..bfb3adf 100644 --- a/paroxysm/quakeworld/sheilds.qc +++ b/paroxysm/quakeworld/sheilds.qc @@ -141,4 +141,4 @@ void() item_armorInv = //self.netname = "regen station"; regen_streamer(2); -}; \ No newline at end of file +}; diff --git a/paroxysm/quakeworld/spectate.qc b/paroxysm/quakeworld/spectate.qc index 4563453..40115bf 100644 --- a/paroxysm/quakeworld/spectate.qc +++ b/paroxysm/quakeworld/spectate.qc @@ -68,4 +68,4 @@ void() SpectatorThink = // do some neat stuff here if (self.impulse) SpectatorImpulseCommand(); -}; \ No newline at end of file +}; diff --git a/paroxysm/quakeworld/subs.qc b/paroxysm/quakeworld/subs.qc index 48d3209..d7c4d8e 100644 --- a/paroxysm/quakeworld/subs.qc +++ b/paroxysm/quakeworld/subs.qc @@ -244,5 +244,4 @@ void() SUB_UseTargets = activator = act; } while ( 1 ); } - -}; \ No newline at end of file +}; diff --git a/paroxysm/quakeworld/targid.qc b/paroxysm/quakeworld/targid.qc index eb7fa3a..c5435b2 100644 --- a/paroxysm/quakeworld/targid.qc +++ b/paroxysm/quakeworld/targid.qc @@ -47,7 +47,7 @@ void() ID_CheckTarget = self.target_id_same = time + 3; return; } - else if (spot != self && visible (spot) )//Found new Target + else if (spot != self && visible (spot) ) //Found new Target { self.last_target_id = spot; self.target_id_finished = time + 1.5; @@ -61,12 +61,10 @@ void() ID_CheckTarget = } else centerprint (self, self.last_target_id.netname); - + return; } } - spot = spot.chain; - } -}; \ No newline at end of file +};