add [MusicWheel] RecentSongsToShow metric

--------
cleanup
small amount of work on guitar-five (still incomplete)
add more commented out stuff for replay data playback
debug trace combo in order to find out issues with smo-ssc
added old packet names as comments in NetworkSyncManager.h
This commit is contained in:
AJ Kelly
2010-02-05 13:42:55 -06:00
parent f9b01e9c93
commit f2f7d2ceeb
15 changed files with 92 additions and 56 deletions
+9 -3
View File
@@ -138,11 +138,17 @@ void Inventory::Update( float fDelta )
void Inventory::AwardItem( int iItemIndex )
{
// CPU player is vanity only. It should have no effect on gameplay
// and should not aquire/launch attacks.
/* CPU players and replay data are vanity only. They should not effect
* gameplay by acquiring/launching attacks. */
if( m_pPlayerState->m_PlayerController == PC_CPU )
return;
/*
if( m_pPlayerState->m_PlayerController == PC_CPU ||
m_pPlayerState->m_PlayerController == PC_REPLAY)
{
return;
}
*/
// search for the first open slot
int iOpenSlot = -1;