Skip to content

Commit

Permalink
more yield for quartered corpses (CleverRaven#45962)
Browse files Browse the repository at this point in the history
  • Loading branch information
satheon49 committed Dec 10, 2020
1 parent e7ecc5e commit 29c5a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/activity_handlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ static void butchery_drops_harvest( item *corpse_item, const mtype &mt, player &
int monster_weight = to_gram( mt.weight );
monster_weight += std::round( monster_weight * rng_float( -0.1, 0.1 ) );
if( corpse_item->has_flag( flag_QUARTERED ) ) {
monster_weight /= 4;
monster_weight /= 1.05;
}
if( corpse_item->has_flag( flag_GIBBED ) ) {
monster_weight = std::round( 0.85 * monster_weight );
Expand Down

0 comments on commit 29c5a56

Please sign in to comment.