kill_counters #109

Closed
andy wants to merge 80 commits from kill_counters into master
Showing only changes of commit a21fb5a644 - Show all commits

View File

@ -170,8 +170,8 @@ impl RareDropTable {
self.rates.get(monster) self.rates.get(monster)
.and_then(|drop_rates| { .and_then(|drop_rates| {
drop_rates.iter() drop_rates.iter()
.filter_map(|drop_rate| { .map(|drop_rate| {
Some(self.apply_item_stats(map_area, drop_rate.item, rng)) self.apply_item_stats(map_area, drop_rate.item, rng)
}).next() }).next()
}) })
} }