summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.h
diff options
context:
space:
mode:
authorelliptic <hyperelliptical@gmail.com>2012-02-06 16:47:22 -0500
committerelliptic <hyperelliptical@gmail.com>2012-02-06 16:47:22 -0500
commit577a65dfc20b4720b056e658311518a3fc908859 (patch)
tree84503c69606c76fcf12758e1485277258d00340f /crawl-ref/source/decks.h
parent050182461a86afbfaa98375b2f6608a4aab3283f (diff)
downloadcrawl-ref-577a65dfc20b4720b056e658311518a3fc908859.tar.gz
crawl-ref-577a65dfc20b4720b056e658311518a3fc908859.zip
Make Nemelex no longer attempt to enforce "genuine" use of cards (fixes #2908).
This really didn't work very well... it is too hard to detect legitimate use of destruction decks, and doing so would just encourage people to scum through them against harmless enemies anyway.
Diffstat (limited to 'crawl-ref/source/decks.h')
-rw-r--r--crawl-ref/source/decks.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/decks.h b/crawl-ref/source/decks.h
index 7186bcafbe..837ce776c9 100644
--- a/crawl-ref/source/decks.h
+++ b/crawl-ref/source/decks.h
@@ -137,8 +137,7 @@ bool choose_deck_and_draw();
void nemelex_shuffle_decks();
void shuffle_all_decks_on_level();
-// Return true if it was a "genuine" draw, false otherwise.
-bool card_effect(card_type which_card, deck_rarity_type rarity,
+void card_effect(card_type which_card, deck_rarity_type rarity,
uint8_t card_flags = 0, bool tell_card = true);
void draw_from_deck_of_punishment();