summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/ng-restr.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/crawl-ref/source/ng-restr.cc b/crawl-ref/source/ng-restr.cc
index 79ca0ea36d..03e4846946 100644
--- a/crawl-ref/source/ng-restr.cc
+++ b/crawl-ref/source/ng-restr.cc
@@ -386,14 +386,10 @@ char_choice_restriction class_allowed(species_type speci,
case SP_DEMONSPAWN:
case SP_MUMMY:
case SP_GHOUL:
- case SP_VAMPIRE:
- return (CC_RESTRICTED);
case SP_OGRE:
case SP_TROLL:
- // XXX: Temp at the minute. They have rubbbish apt for launchers
- // and there's no point giving them large rocks and throwings nets
- // and then a book with spells that are useless for them. {due}
- return (CC_BANNED);
+ case SP_VAMPIRE:
+ return (CC_RESTRICTED);
default:
return (CC_UNRESTRICTED);
}