Skip to content

Commit

Permalink
- Fixed issue where powerups wouldn't show up in arsenal correctly if…
Browse files Browse the repository at this point in the history
… instagib was set to 1.
  • Loading branch information
q3shafe committed Dec 5, 2017
1 parent 0f887c5 commit 1706473
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Docs/CHANGELOG.TXT
Expand Up @@ -25,11 +25,11 @@ SUMMARY OF THE NEW AND NOTABLE:
- Lots of bugfixes




==================================================
Detailed Changelog - Most Recent Changes First
==================================================
- Fixed issue where powerups wouldn't show up in arsenal correctly if instagib was set to 1.

- Fixed issue where new buildable items are announced more than once.

- Fixed issue where player remains immobilized after team scores and buildable are destroyed.
Expand Down
Binary file modified game-media/pak0-vms/vm/qagame.qvm
Binary file not shown.
6 changes: 3 additions & 3 deletions vms-source/code/game/g_items.c
Expand Up @@ -852,6 +852,7 @@ void ClearRegisteredItems( void ) {

// Let's Always Register The Rocket Launcher - Shafe - Trep
RegisterItem( BG_FindItemForWeapon( WP_ROCKET_LAUNCHER ) );

// Shafe - Trep Preregister Lighning and the Grapple For the offhand grapple
RegisterItem( BG_FindItemForWeapon( WP_LIGHTNING ) );
RegisterItem( BG_FindItemForWeapon( WP_GRAPPLING_HOOK ) );
Expand Down Expand Up @@ -879,15 +880,14 @@ void ClearRegisteredItems( void ) {
RegisterItem( BG_FindItemForWeapon( WP_SHOTGUN ) );
RegisterItem( BG_FindItemForWeapon( WP_RAILGUN ) );
RegisterItem( BG_FindItemForWeapon( WP_PLASMAGUN ) );
RegisterItem( BG_FindItemForWeapon( WP_BFG ) );
RegisterItem( BG_FindItemForWeapon( WP_BFG ) );
}

// Github issue 43 - fix shafe
RegisterItem( BG_FindItemForPowerup( PW_QUAD ) );
RegisterItem( BG_FindItemForPowerup( PW_FLIGHT ) );
RegisterItem( BG_FindItemForPowerup( PW_BATTLESUIT ) );
RegisterItem( BG_FindItemForPowerup( PW_REGEN ) );

}
}

#ifdef MISSIONPACK
Expand Down

0 comments on commit 1706473

Please sign in to comment.