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

Screechers: fixed Bowie Knife being 1 melee kill

This commit is contained in:
Jbleezy 2020-02-23 22:50:53 -08:00
parent d9da99e0a0
commit 41c4fc1723

View File

@ -82,6 +82,9 @@ post_all_players_spawned()
zone_changes(); zone_changes();
screecher_spawner_changes();
screecher_remove_near_miss();
electric_trap_always_kill(); electric_trap_always_kill();
jetgun_disable_explode_overheat(); jetgun_disable_explode_overheat();
@ -104,9 +107,6 @@ post_all_players_spawned()
level thread transit_power_local_electric_doors_globally(); level thread transit_power_local_electric_doors_globally();
level thread screecher_decrease_health();
level thread screecher_remove_near_miss();
level thread town_move_staminup_machine(); level thread town_move_staminup_machine();
level thread prison_auto_refuel_plane(); level thread prison_auto_refuel_plane();
@ -1156,7 +1156,7 @@ screecher_remove_near_miss()
level.near_miss = 2; level.near_miss = 2;
} }
screecher_decrease_health() screecher_spawner_changes()
{ {
level.screecher_spawners = getentarray( "screecher_zombie_spawner", "script_noteworthy" ); level.screecher_spawners = getentarray( "screecher_zombie_spawner", "script_noteworthy" );
array_thread( level.screecher_spawners, ::add_spawn_function, ::screecher_prespawn_decrease_health ); array_thread( level.screecher_spawners, ::add_spawn_function, ::screecher_prespawn_decrease_health );
@ -1164,7 +1164,7 @@ screecher_decrease_health()
screecher_prespawn_decrease_health() screecher_prespawn_decrease_health()
{ {
self.player_score = 15; self.player_score = 12;
} }
transit_power_local_electric_doors_globally() transit_power_local_electric_doors_globally()