git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7500 c06c8d41-db1a-0410-9941-cceddc491573
3XYZAZEI24FHIDJADHHTPYFD3LRYBW5AI2PFAEUQK6CBZOOB4AWAC
WFMQVPMMOPG5SBJD5LUBOIYWRMXVWK3FXENK7SAEGZ5T6XWFKERQC
UET576SVCGS2TXEDRTO7BUTOTLJ77MYHIVZJCDWGH2BAXYMKG6DAC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
|| you.has_claws()) && you.equip[EQ_GLOVES] == -1;
|| you.has_claws()) && !player_wearing_slot(EQ_GLOVES);
|| you.has_claws())
&& !player_wearing_slot(EQ_GLOVES);
bool gloved_butcher = (you.has_claws() && you.equip[EQ_GLOVES] != -1
bool gloved_butcher = (you.has_claws() && player_wearing_slot(EQ_GLOVES)
bool can_butcher = teeth_butcher || barehand_butcher || (you.weapon() && can_cut_meat(*you.weapon()));
bool can_butcher = teeth_butcher || barehand_butcher
|| (you.weapon() && can_cut_meat(*you.weapon()));
bool can_butcher = (teeth_butcher || barehand_butcher || you.weapon() && can_cut_meat(*you.weapon()));
bool can_butcher = (teeth_butcher || barehand_butcher
|| you.weapon() && can_cut_meat(*you.weapon()));