summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/quiver.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/quiver.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/quiver.cc')
-rw-r--r--crawl-ref/source/quiver.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/quiver.cc b/crawl-ref/source/quiver.cc
index 8023e11ee5..b1d7c58de3 100644
--- a/crawl-ref/source/quiver.cc
+++ b/crawl-ref/source/quiver.cc
@@ -79,7 +79,7 @@ void player_quiver::get_desired_item(const item_def** item_out, int* slot_out) c
int player_quiver::get_fire_item(std::string* no_item_reason) const
{
// Felids have no use for the quiver.
- if (you.species == SP_CAT)
+ if (you.species == SP_FELID)
{
if (no_item_reason != NULL)
*no_item_reason = "You can't grasp things well enough to throw them.";
@@ -178,7 +178,7 @@ void quiver_item(int slot)
void choose_item_for_quiver()
{
- if (you.species == SP_CAT)
+ if (you.species == SP_FELID)
{
mpr("You can't grasp things well enough to throw them.");
return;
@@ -323,7 +323,7 @@ void player_quiver::on_inv_quantity_changed(int slot, int amt)
void player_quiver::_maybe_fill_empty_slot()
{
// Felids have no use for the quiver.
- if (you.species == SP_CAT)
+ if (you.species == SP_FELID)
return;
const item_def* weapon = you.weapon();