mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-31 13:50:55 +00:00
changed buoyancy to lift as per Sze
This commit is contained in:
parent
297d341342
commit
9bd6a0d156
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.41 2002/05/21 04:21:48 blaze
|
||||||
|
// changed buoyancy to lift as per Sze
|
||||||
|
//
|
||||||
// Revision 1.40 2002/05/20 16:25:48 makro
|
// Revision 1.40 2002/05/20 16:25:48 makro
|
||||||
// Triggerable cameras
|
// Triggerable cameras
|
||||||
//
|
//
|
||||||
|
@ -661,7 +664,7 @@ void SP_func_breakable( gentity_t *ent ) {
|
||||||
G_SpawnInt( "force", "7", &velocity);
|
G_SpawnInt( "force", "7", &velocity);
|
||||||
rq3_breakables[id].velocity = velocity;
|
rq3_breakables[id].velocity = velocity;
|
||||||
|
|
||||||
G_SpawnInt( "buoyancy", "5", &jump);
|
G_SpawnInt( "lift", "5", &jump);
|
||||||
rq3_breakables[id].jump = jump;
|
rq3_breakables[id].jump = jump;
|
||||||
|
|
||||||
amount = amount << 6;
|
amount = amount << 6;
|
||||||
|
|
Loading…
Reference in a new issue