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

Der Wunderfizz: all perks equal

This commit is contained in:
Jbleezy 2020-02-18 14:41:56 -08:00
parent f3f3b908be
commit 271c6d5941
2 changed files with 13 additions and 1 deletions

View File

@ -103,4 +103,5 @@
* Fountain portal automatically active
### Origins
* Shovels automatically picked up
* Shovels automatically picked up
* Der Wunderfizz: all perks have an equal chance of being obtained

View File

@ -98,6 +98,7 @@ post_all_players_spawned()
level thread buried_deleteslothbarricades();
level thread buried_enable_fountain_transport();
level thread tomb_remove_weighted_random_perks();
level thread tomb_remove_shovels_from_map();
//level.round_number = 115;
@ -1089,6 +1090,16 @@ buried_enable_fountain_transport()
level notify( "courtyard_fountain_open" );
}
tomb_remove_weighted_random_perks()
{
if(!(is_classic() && level.scr_zm_map_start_location == "tomb"))
{
return;
}
level.custom_random_perk_weights = undefined;
}
tomb_remove_shovels_from_map()
{
if(!(is_classic() && level.scr_zm_map_start_location == "tomb"))