mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-03-13 22:22:13 +00:00
Small warning fixes
This commit is contained in:
parent
18cf92c572
commit
162c87e06f
5 changed files with 24 additions and 5 deletions
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.25 2002/04/03 15:51:01 jbravo
|
||||
// Small warning fixes
|
||||
//
|
||||
// Revision 1.24 2002/04/03 03:13:48 blaze
|
||||
// NEW BREAKABLE CODE - will break all old breakables(wont appear in maps)
|
||||
//
|
||||
|
@ -1220,7 +1223,8 @@ void CG_BreakBreakable( centity_t *cent,int eParam, int number ) {
|
|||
int sparkCount;
|
||||
|
||||
int i;
|
||||
int modelbias[10] = { 0, 0, 0, 0, 1, 1, 1, 2, 2 };
|
||||
// JBravo: Unused variable
|
||||
// int modelbias[10] = { 0, 0, 0, 0, 1, 1, 1, 2, 2 };
|
||||
int id;
|
||||
int count;
|
||||
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.25 2002/04/03 15:51:01 jbravo
|
||||
// Small warning fixes
|
||||
//
|
||||
// Revision 1.24 2002/04/03 03:13:16 blaze
|
||||
// NEW BREAKABLE CODE - will break all old breakables(wont appear in maps)
|
||||
//
|
||||
|
@ -2346,4 +2349,5 @@ void SP_func_explosive (gentity_t *ent)
|
|||
trap_LinkEntity( ent );
|
||||
G_Printf("at : %s %s Material (%d)\n", vtos(ent->r.currentAngles), vtos(ent->r.currentOrigin ), ent->material );
|
||||
}
|
||||
*/
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.15 2002/04/03 15:51:01 jbravo
|
||||
// Small warning fixes
|
||||
//
|
||||
// Revision 1.14 2002/04/03 03:13:16 blaze
|
||||
// NEW BREAKABLE CODE - will break all old breakables(wont appear in maps)
|
||||
//
|
||||
|
@ -212,7 +215,8 @@ void SP_team_redobelisk( gentity_t *ent );
|
|||
void SP_team_neutralobelisk( gentity_t *ent );
|
||||
#endif
|
||||
|
||||
void SP_item_botroam( gentity_t *ent ) {};
|
||||
// JBravo: SP_item_botroam doesnt really exsist.
|
||||
//void SP_item_botroam( gentity_t *ent ) {};
|
||||
//Blaze: merged func_explosive into func_breakable
|
||||
|
||||
// JBravo: adding explosive
|
||||
|
@ -295,7 +299,7 @@ spawn_t spawns[] = {
|
|||
|
||||
//Blaze: Merged func_explosive into func_breakable
|
||||
// {"func_explosive", SP_func_explosive}, // JBravo: for explosive.
|
||||
{"item_botroam", SP_item_botroam},
|
||||
// {"item_botroam", SP_item_botroam},
|
||||
|
||||
{0, 0}
|
||||
};
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.7 2002/04/03 15:51:01 jbravo
|
||||
// Small warning fixes
|
||||
//
|
||||
// Revision 1.6 2002/02/26 03:58:19 jbravo
|
||||
// Added a newline to the say messages from the server
|
||||
//
|
||||
|
@ -178,7 +181,7 @@ qboolean G_FilterPacket (char *from)
|
|||
AddIP
|
||||
=================
|
||||
*/
|
||||
static void AddIP( char *str )
|
||||
void AddIP( char *str )
|
||||
{
|
||||
int i;
|
||||
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.57 2002/04/03 15:51:01 jbravo
|
||||
// Small warning fixes
|
||||
//
|
||||
// Revision 1.56 2002/04/03 09:26:47 jbravo
|
||||
// New FF system. Warns and then finally kickbans teamwounders and
|
||||
// teamkillers
|
||||
|
@ -202,6 +205,7 @@ void ResetKills(gentity_t *ent);
|
|||
void ClearBodyQue (void);
|
||||
void Cmd_DropItem_f(gentity_t *ent);
|
||||
void Cmd_DropWeapon_f(gentity_t *ent);
|
||||
void AddIP(char *str);
|
||||
|
||||
void CheckTeamRules()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue