summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-10 22:16:26 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-10 22:16:26 +0000
commit6ab8bec6b7eeee59b9bdb946aba467ef9b9d69e5 (patch)
tree823150979809e312dc8b09bb531d4244665d8ca0
parent5d63ba55c3cd7bf6d992eaac32187e80748ff25f (diff)
downloadcrawl-ref-6ab8bec6b7eeee59b9bdb946aba467ef9b9d69e5.tar.gz
crawl-ref-6ab8bec6b7eeee59b9bdb946aba467ef9b9d69e5.zip
Fix compilation (oops).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8398 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/arena.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index 4816004bd5..9093a2be53 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -797,7 +797,9 @@ namespace arena
{
// Set various options from the arena spec's tags
try
+ {
parse_monster_spec();
+ }
catch (const std::string &error)
{
write_error(error);
@@ -875,7 +877,9 @@ namespace arena
do
{
try
+ {
setup_fight();
+ }
catch (const std::string &error)
{
write_error(error);