summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 09:49:39 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 09:49:39 +0000
commitaed21b5eb6dd5422b50ecb46617f2da16f108965 (patch)
treeca38d8f0a9e58eeba9a0a1243669ea83ea988a92 /crawl-ref/source/initfile.cc
parentd629a6a0ab679fb6728d2b632fe4bea13fcd3a0b (diff)
downloadcrawl-ref-aed21b5eb6dd5422b50ecb46617f2da16f108965.tar.gz
crawl-ref-aed21b5eb6dd5422b50ecb46617f2da16f108965.zip
[1810433] Ogre hunters start with large rocks. Monster ogres can also throw large rocks but are never generated with rocks.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2545 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index c887384b2d..fbd6685bde 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -261,6 +261,8 @@ static fire_type str_to_fire_types( const std::string &str )
return (FIRE_DART);
else if (str == "stone")
return (FIRE_STONE);
+ else if (str == "rock")
+ return (FIRE_ROCK);
else if (str == "dagger")
return (FIRE_DAGGER);
else if (str == "spear")
@@ -706,7 +708,8 @@ void game_options::reset_options()
fire_items_start = 2; // start at slot 'c'
// Clear fire_order and set up the defaults.
- set_fire_order("launcher, javelin / dart / stone / spear");
+ set_fire_order("launcher, "
+ "javelin / dart / stone / rock / spear / net / handaxe");
item_stack_summary_minimum = 5;