diff --git a/README.md b/README.md index 132f6755..0edd9da9 100644 --- a/README.md +++ b/README.md @@ -103,4 +103,5 @@ * Fountain portal automatically active ### Origins -* Shovels automatically picked up \ No newline at end of file +* Shovels automatically picked up +* Der Wunderfizz: all perks have an equal chance of being obtained \ No newline at end of file diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index 00db05bd..0a9e77cc 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -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"))