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

Unpad inside of parens

This commit is contained in:
Jbleezy
2023-12-16 20:01:17 -08:00
parent c87c2da9a0
commit d9b261f49e
158 changed files with 10853 additions and 10853 deletions

View File

@ -4,39 +4,39 @@
lava_damage_depot()
{
trigs = getentarray( "lava_damage", "targetname" );
volume = getent( "depot_lava_volume", "targetname" );
exploder( 2 );
trigs = getentarray("lava_damage", "targetname");
volume = getent("depot_lava_volume", "targetname");
exploder(2);
foreach ( trigger in trigs )
foreach (trigger in trigs)
{
if ( isDefined( trigger.script_string ) && trigger.script_string == "depot_lava" )
if (isDefined(trigger.script_string) && trigger.script_string == "depot_lava")
{
trig = trigger;
}
}
if ( isDefined( trig ) )
if (isDefined(trig))
{
trig.script_float = 0.05;
}
flag_wait( "power_on" );
flag_wait("power_on");
while ( !volume maps\mp\zm_transit::depot_lava_seen() )
while (!volume maps\mp\zm_transit::depot_lava_seen())
{
wait 0.05;
}
if ( isDefined( trig ) )
if (isDefined(trig))
{
trig.script_float = 0.4;
earthquake( 0.5, 1.5, trig.origin, 1000 );
level clientnotify( "earth_crack" );
crust = getent( "depot_black_lava", "targetname" );
earthquake(0.5, 1.5, trig.origin, 1000);
level clientnotify("earth_crack");
crust = getent("depot_black_lava", "targetname");
crust delete();
}
stop_exploder( 2 );
exploder( 3 );
stop_exploder(2);
exploder(3);
}