1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 07:08:06 -05:00

Pack-a-Punch: add no purchase sound

This commit is contained in:
Jbleezy
2023-10-01 11:11:45 -07:00
parent 678a1ac9e5
commit 8c2eb6c0ff
2 changed files with 3 additions and 2 deletions

View File

@ -396,6 +396,7 @@
## Pack-a-Punch
* No longer costs 2000 points to change attachments on an upgraded weapon
* Decreased weapon pickup time from 15 seconds to 12 seconds
* Added sound when attempting to purchase without enough points
## Powerups
* Decreased chance to drop from 3% to 2%

View File

@ -294,7 +294,7 @@ vending_trigger_think()
if ( cheat != 1 )
{
self playsound( "deny" );
self playsound( "evt_perk_deny" );
player maps\mp\zombies\_zm_audio::create_and_play_dialog( "general", "perk_deny", undefined, 1 );
continue;
}
@ -592,7 +592,7 @@ vending_weapon_upgrade()
if ( !upgrade_as_attachment && player.score < current_cost )
{
self playsound( "deny" );
self playsound( "evt_perk_deny" );
if ( isdefined( level.custom_pap_deny_vo_func ) )
player [[ level.custom_pap_deny_vo_func ]]();