summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-13 15:53:51 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-13 15:53:51 +0100
commite63d9087da8771801644e1103d8f869d4576590c (patch)
tree4d4dfb888dc2731a3f3ca790abcae30f567dd773 /crawl-ref/source/arena.cc
parente902e699c6ff234e6b04f6d0a8f4190548db3e8f (diff)
downloadcrawl-ref-e63d9087da8771801644e1103d8f869d4576590c.tar.gz
crawl-ref-e63d9087da8771801644e1103d8f869d4576590c.zip
Make arena without team spec play random v random.
Diffstat (limited to 'crawl-ref/source/arena.cc')
-rw-r--r--crawl-ref/source/arena.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index 68170804ab..befa4f15cd 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -273,7 +273,8 @@ namespace arena
{
if (!SysEnv.arena_teams.empty())
return (SysEnv.arena_teams);
- throw std::string("No monsters specified for the arena.");
+ else
+ return ("random v random");
}
void parse_faction(faction &fact, std::string spec)