Skip to content

Commit fae989c

Browse files
committed
prevent blueprints tab from showing up on non-beta (it's not done yet!)
1 parent 0401d66 commit fae989c

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/game/client/swarm/rd_collections.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ void LaunchCollectionsFrame()
3939
CRD_Collection_Tab_Inventory *pOtherTab = new CRD_Collection_Tab_Inventory( pFrame, "#rd_collection_inventory_other", "medal" );
4040
pOtherTab->m_bInvertSlotFilter = true;
4141
pFrame->AddTab( pOtherTab );
42+
#ifdef RD_7A_CRAFTING
4243
pFrame->AddTab( new CRD_Collection_Tab_Crafting( pFrame, "#rd_collection_inventory_crafting" ) );
44+
#endif
4345
if ( rd_legacy_ui.GetString()[0] != '\0' )
4446
{
4547
pFrame->AddTab( new CRD_Collection_Tab_Equipment( pFrame, "#rd_collection_weapons", NULL, ASW_INVENTORY_SLOT_PRIMARY ) );

src/game/shared/swarm/rd_release_flags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// 7th anniversary
1515
#define RD_7A_CHATWHEEL
16-
//#define RD_7A_CRAFTING
16+
#define RD_7A_CRAFTING
1717
#define RD_7A_DROPS
1818
//#define RD_7A_ENEMIES
1919
#define RD_7A_LOADOUTS

0 commit comments

Comments
 (0)