summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-inv.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-06-07 13:14:40 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-06-07 16:11:14 +0200
commit61ce99bc3b6982454f9090a6d92b30cddf75f3f7 (patch)
tree9219b50fb50447cd613fd623bead1e8075ef0d8d /crawl-ref/source/tilereg-inv.cc
parent2a965c080c499f7189ccf539dc21c62474d1748d (diff)
downloadcrawl-ref-61ce99bc3b6982454f9090a6d92b30cddf75f3f7.tar.gz
crawl-ref-61ce99bc3b6982454f9090a6d92b30cddf75f3f7.zip
s/SP_CAT/SP_FELID/
I did not change this when the species' name was in flux, but it's kind of set in stone now, so let's be consistent.
Diffstat (limited to 'crawl-ref/source/tilereg-inv.cc')
-rw-r--r--crawl-ref/source/tilereg-inv.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tilereg-inv.cc b/crawl-ref/source/tilereg-inv.cc
index cd2a66c9af..87dbf3b0f7 100644
--- a/crawl-ref/source/tilereg-inv.cc
+++ b/crawl-ref/source/tilereg-inv.cc
@@ -360,7 +360,7 @@ bool InventoryRegion::update_tip_text(std::string& tip)
// first equipable categories
case OBJ_WEAPONS:
case OBJ_STAVES:
- if (you.species != SP_CAT)
+ if (you.species != SP_FELID)
{
_handle_wield_tip(tmp, cmd);
if (is_throwable(&you, item))
@@ -404,7 +404,7 @@ bool InventoryRegion::update_tip_text(std::string& tip)
_handle_wield_tip(tmp, cmd, "\n[Ctrl + L-Click] ", true);
break;
case OBJ_ARMOUR:
- if (you.species != SP_CAT)
+ if (you.species != SP_FELID)
{
tmp += "Wear (%)";
cmd.push_back(CMD_WEAR_ARMOUR);
@@ -423,7 +423,7 @@ bool InventoryRegion::update_tip_text(std::string& tip)
cmd.push_back(CMD_REMOVE_JEWELLERY);
break;
case OBJ_MISSILES:
- if (you.species != SP_CAT)
+ if (you.species != SP_FELID)
{
tmp += "Fire (%)";
cmd.push_back(CMD_FIRE);
@@ -433,7 +433,7 @@ bool InventoryRegion::update_tip_text(std::string& tip)
}
break;
case OBJ_WANDS:
- if (you.species != SP_CAT)
+ if (you.species != SP_FELID)
{
tmp += "Evoke (%)";
cmd.push_back(CMD_EVOKE);