summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_misc.c13
-rw-r--r--src/game/bg_public.h1
-rw-r--r--src/game/g_client.c12
-rw-r--r--src/game/g_cmds.c6
4 files changed, 30 insertions, 2 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c
index 893f2f2d..1be34a84 100644
--- a/src/game/bg_misc.c
+++ b/src/game/bg_misc.c
@@ -1575,6 +1575,19 @@ classAttributes_t bg_classList[ ] =
{ PCL_NONE, PCL_NONE, PCL_NONE }, //int children[ 3 ];
0, //int timetoevolve;
0 //int value;
+ },
+ {
+ //this isn't a real class, but a dummy to force the client to precache the model
+ //FIXME: one day do this in a less hacky fashion
+ PCL_H_BSUIT, "bsuit", "bsuit",
+
+ "keel",
+ 1.0f,
+ "default",
+
+ "bsuit", ( 1 << S1 )|( 1 << S2 )|( 1 << S3 ), { 0, 0, 0 }, { 0, 0, 0, },
+ { 0, 0, 0, }, { 0, 0, 0, }, { 0, 0, 0, }, 0, 0, 0, 0, 0, WP_NONE, 0.0f, 0,
+ 0.0f, 0, 1.0f, 1.0f, { PCL_NONE, PCL_NONE, PCL_NONE }, 0, 0
}
};
diff --git a/src/game/bg_public.h b/src/game/bg_public.h
index f29f8ca5..7db8669d 100644
--- a/src/game/bg_public.h
+++ b/src/game/bg_public.h
@@ -753,6 +753,7 @@ typedef enum
//human class
PCL_H_BASE,
+ PCL_H_BSUIT,
PCL_NUM_CLASSES
} pClass_t;
diff --git a/src/game/g_client.c b/src/game/g_client.c
index 317dde15..4ea52828 100644
--- a/src/game/g_client.c
+++ b/src/game/g_client.c
@@ -1110,8 +1110,16 @@ void ClientUserinfoChanged( int clientNum )
client->pers.maxHealth = 0;
// set model
- Com_sprintf( buffer, MAX_QPATH, "%s/%s", BG_FindModelNameForClass( client->pers.pclass ),
- BG_FindSkinNameForClass( client->pers.pclass ) );
+ if( client->ps.stats[ STAT_PCLASS ] == PCL_H_BASE && BG_gotItem( UP_BATTLESUIT, client->ps.stats ) )
+ {
+ Com_sprintf( buffer, MAX_QPATH, "%s/%s", BG_FindModelNameForClass( PCL_H_BSUIT ),
+ BG_FindSkinNameForClass( PCL_H_BSUIT ) );
+ }
+ else
+ {
+ Com_sprintf( buffer, MAX_QPATH, "%s/%s", BG_FindModelNameForClass( client->pers.pclass ),
+ BG_FindSkinNameForClass( client->pers.pclass ) );
+ }
Q_strncpyz( model, buffer, sizeof( model ) );
//model segmentation
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 04888634..96b28f52 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -1452,6 +1452,9 @@ void Cmd_Buy_f( gentity_t *ent )
//if the buyer previously had no items at all, force a new selection
if( numItems == 0 )
G_AddEvent( ent, EV_NEXT_WEAPON, 0 );
+
+ //update ClientInfo
+ ClientUserinfoChanged( ent->client->ps.clientNum );
}
@@ -1531,6 +1534,9 @@ void Cmd_Sell_f( gentity_t *ent )
}
else
trap_SendServerCommand( ent-g_entities, va( "print \"Unknown item\n\"" ) );
+
+ //update ClientInfo
+ ClientUserinfoChanged( ent->client->ps.clientNum );
}
/*