summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-29 19:40:13 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-29 19:40:13 -0500
commitf8e148464674520fd7093896ebf5d16df8dac1aa (patch)
tree809b14d378771abedf4ece800285517030615c63 /crawl-ref/source/ghost.cc
parent9f5ffcc6793afe30119408291a482c2a78133fe4 (diff)
downloadcrawl-ref-f8e148464674520fd7093896ebf5d16df8dac1aa.tar.gz
crawl-ref-f8e148464674520fd7093896ebf5d16df8dac1aa.zip
Give green ugly things AF_POISON_NASTY instead of AF_POISON, as it's
more fitting given their hit dice.
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index bbd464e0a4..dc1ad74ba1 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -427,7 +427,7 @@ static mon_attack_flavour _ugly_thing_colour_to_flavour(unsigned char u_colour)
break;
case GREEN:
- u_att_flav = AF_POISON;
+ u_att_flav = AF_POISON_NASTY;
break;
case RED:
@@ -457,7 +457,7 @@ static mon_attack_flavour _ugly_thing_flavour_upgrade(mon_attack_flavour u_att_f
{
switch (u_att_flav)
{
- case AF_POISON:
+ case AF_POISON_NASTY:
u_att_flav = AF_POISON_MEDIUM;
break;