git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9860 c06c8d41-db1a-0410-9941-cceddc491573
WC4OBZTXFWZPCBJDJQ7VSFOS5XXWOFK3IJMIMSJNMKUNYSGK5NZAC
5BDBWUAXTI7UQGQ3U6XMSKDQXSE3WVFZBLG22CJYNMTAERWFYQEAC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
if (mons_flies(mon)) simple_monster_message(mon, " goes down the shaft."); else simple_monster_message(mon, " jumps into the shaft.");
if (mons_flies(mon))
simple_monster_message(mon, " goes down the shaft.");
else
simple_monster_message(mon, " jumps into the shaft.");
simple_monster_message(mon, make_stringf(" %s the shaft.", mons_flies(mon) ? "goes down" : "jumps into").c_str());
simple_monster_message(mon,
make_stringf(" %s the shaft.",
mons_flies(mon) ? "goes down"
: "jumps into").c_str());