descriptions. Also remove reference to weapons of disruption.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3413 c06c8d41-db1a-0410-9941-cceddc491573
6T6E2JGOAQCQU56ZR6D6BTCQ6PKWLHQUPYVQZI6GRGX2FDDLILFQC
ZMED4SUEZTGX762DHBTMAZYNJZDV7RFFKMELFSTCM4KZFX553H5AC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC
L254F6ZIU2HWGLFFGPIORTN4C3TDQ3E5JZ7Z7GQA5AEDIKL6PKDAC
XCEZ7OA2INNPSYNAB5U6JB7XNDAD5BKU26YLFPPZ3SEESFZKADQAC
HDLNRHAMFVDM4QCZMY6COBYZ35ODPR5PONT4UE77UAZ7GEE2FLHQC
KTXVWUS3MNY7WCPUYZDDU3RVLFKKFLSWRCWKSDNYNMPYZQCVJ24AC
4GGNXCX2CLKWQZIZT543LXFFKFRD4PY5XPJFLGWKW4ACKYZNLVPQC
BSI5DB3LVY42ZHOS46X2CAPPVOSOTTQWFGLTMAKRFTROI5BQWFDQC
OQ4KB7QCJSK7GSW3DYBARH4DCB75HFKLUSOSOZZZ4IUFKNGFRUDQC
CIPVRZGLOZHCERK6YPOBV3P2E4IAB4H6D5EHLRQE2O5E4P4VCBUAC
VNHFP63ZLLZU3A3PLXP4BITX57DUIYDHFOHQYK3BOBHV3S64G26QC
const bool tried = (!ident && !equipped && item_type_tried(*this));
std::string tried_str = "";
if (tried)
{
item_type_id_state_type id_type =
get_ident_type(this->base_type, this->sub_type);
if (id_type == ID_MON_TRIED_TYPE)
tried_str = "tried by monster";
else
tried_str = "tried";
}
if (tried)
{
item_type_id_state_type id_type =
get_ident_type(this->base_type, this->sub_type);
if (id_type == ID_MON_TRIED_TYPE)
tried_str = "tried by monster";
else
tried_str = "tried";
}
if ( with_inscription && !(this->inscription.empty()) )
{
buff << " {";
if ( tried )
buff << tried_str << ", ";
buff << this->inscription << "}";
if ( with_inscription && !(this->inscription.empty()) )
{
buff << " {";
if ( tried )
buff << tried_str << ", ";
buff << this->inscription << "}";
}
else if ( tried )
buff << " {" << tried_str << "}";