Skip to content

Commit

Permalink
Allow vine to replace rope.
Browse files Browse the repository at this point in the history
vine "Could easily be used as a rope".
  • Loading branch information
kwl01skz authored Aug 31, 2018
1 parent 0db5290 commit d2d6fbb
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 @@ -309,7 +309,7 @@ void set_up_butchery( player_activity &act, player &u, butcher_type action )
}
// workshop butchery (full) prequisites
if( action == BUTCHER_FULL ) {
bool has_rope = u.has_amount( "rope_30", 1 ) || u.has_amount( "rope_makeshift_30", 1 );
bool has_rope = u.has_amount( "rope_30", 1 ) || u.has_amount( "rope_makeshift_30", 1 ) || u.has_amount( "vine_30", 1 ) ;
bool b_rack_present = g->m.has_flag_furn( "BUTCHER_EQ", u.pos() );
bool big_corpse = corpse.size >= MS_MEDIUM;

Expand Down

0 comments on commit d2d6fbb

Please sign in to comment.