Fix complaints during make due to lack of new lines at end of file.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2002-03-03 05:18:53 +00:00
parent d8d86b931e
commit 60675de584
5 changed files with 7 additions and 10 deletions

View file

@ -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;
.float target_id_temp;

View file

@ -141,4 +141,4 @@ void() item_armorInv =
//self.netname = "regen station";
regen_streamer(2);
};
};

View file

@ -68,4 +68,4 @@ void() SpectatorThink =
// do some neat stuff here
if (self.impulse)
SpectatorImpulseCommand();
};
};

View file

@ -244,5 +244,4 @@ void() SUB_UseTargets =
activator = act;
} while ( 1 );
}
};
};

View file

@ -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;
}
};
};