summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index d821a9180a..7509309a4c 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -2890,7 +2890,7 @@ static int give_weapon(monsters *mon, int level)
if (one_chance_in(12) && level > 1)
{
item.base_type = OBJ_WEAPONS;
- item.base_type = WPN_BLOWGUN;
+ item.sub_type = WPN_BLOWGUN;
break;
}
// deliberate fall through {dlb}
@@ -2950,7 +2950,7 @@ static int give_weapon(monsters *mon, int level)
if (one_chance_in(15) && level > 1)
{
item.base_type = OBJ_WEAPONS;
- item.base_type = WPN_BLOWGUN;
+ item.sub_type = WPN_BLOWGUN;
break;
}
// deliberate fall through {gdl}