1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-23 05:30:41 -05:00

Origins quest: rain fire button no longer deactivates

This commit is contained in:
Jbleezy
2023-03-02 18:36:27 -08:00
parent 1de8b2e74a
commit ba2a940e4f
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\zombies\_zm_utility;
#include maps\mp\zombies\_zm_sidequests;
#include maps\mp\zm_tomb_ee_main;
#include maps\mp\zombies\_zm_unitrigger;
#include maps\mp\zm_tomb_ee_main_step_3;
fire_link_cooldown( t_button )
{
level notify( "fire_link_cooldown" );
level endon( "fire_link_cooldown" );
flag_set( "fire_link_enabled" );
if ( isdefined( t_button ) )
{
t_button playsound( "vox_maxi_robot_activated_0" );
}
}