summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:08:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:08:04 +0000
commitae3f3137e8bf48b0276484074f6a03c9dc7497af (patch)
tree3df66a545a40ac0ac25a05c36eb3501ce012773d /crawl-ref/source/spells3.cc
parentb9005fdff781a76600ceff611d01dd9d649f748d (diff)
downloadcrawl-ref-ae3f3137e8bf48b0276484074f6a03c9dc7497af.tar.gz
crawl-ref-ae3f3137e8bf48b0276484074f6a03c9dc7497af.zip
Use the proper flag type to indicate god gifts (oops).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5645 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index a80a72fb5c..bb7cf5a87a 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -425,7 +425,7 @@ bool cast_call_imp(int pow, bool god_gift)
if (create_monster(
mgen_data(mon, BEH_FRIENDLY, dur, you.pos(),
you.pet_target,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
success = true;
@@ -455,7 +455,7 @@ static bool _summon_demon_class_wrapper(int pow, bool god_gift,
charmed ? BEH_CHARMED : BEH_HOSTILE,
dur, you.pos(),
friendly ? you.pet_target : MHITYOU,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
success = true;
@@ -547,7 +547,7 @@ bool summon_demon_type(monster_type mon, int pow, bool god_gift)
friendly ? BEH_FRIENDLY : BEH_HOSTILE,
dur, you.pos(),
friendly ? you.pet_target : MHITYOU,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
success = true;
@@ -567,7 +567,7 @@ bool cast_shadow_creatures(bool god_gift)
if (create_monster(
mgen_data(RANDOM_MONSTER, BEH_FRIENDLY, 2,
you.pos(), you.pet_target,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
success = true;
@@ -611,7 +611,7 @@ bool cast_summon_horrible_things(int pow, bool god_gift)
if (create_monster(
mgen_data(MONS_TENTACLED_MONSTROSITY, BEH_FRIENDLY, 6,
you.pos(), you.pet_target,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
count++;
}
@@ -624,7 +624,7 @@ bool cast_summon_horrible_things(int pow, bool god_gift)
if (create_monster(
mgen_data(MONS_ABOMINATION_LARGE, BEH_FRIENDLY, 6,
you.pos(), you.pet_target,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
count++;
}
@@ -836,7 +836,7 @@ static bool _raise_corpse(int x, int y, int corps, beh_type beha,
int monster = create_monster(
mgen_data(mon, beha, 0,
coord_def(x, y), hitting,
- god_gift ? MF_GOD_GIFT : 0,
+ god_gift ? MG_GOD_GIFT : 0,
zombie_type, number));
if (monster != -1)
@@ -1041,7 +1041,7 @@ bool cast_simulacrum(int pow, bool god_gift)
if (create_monster(
mgen_data(MONS_SIMULACRUM_SMALL, BEH_FRIENDLY,
6, you.pos(), you.pet_target,
- god_gift ? MF_GOD_GIFT : 0,
+ god_gift ? MG_GOD_GIFT : 0,
mon)) != -1)
{
count++;
@@ -1135,7 +1135,7 @@ bool cast_twisted_resurrection(int pow, bool god_gift)
int monster = create_monster(
mgen_data(mon, BEH_FRIENDLY, 0,
you.pos(), you.pet_target,
- god_gift ? MF_GOD_GIFT : 0,
+ god_gift ? MG_GOD_GIFT : 0,
MONS_PROGRAM_BUG, 0, colour));
if (monster == -1)
@@ -1185,7 +1185,7 @@ bool cast_summon_wraiths(int pow, bool god_gift)
friendly ? BEH_FRIENDLY : BEH_HOSTILE,
5, you.pos(),
friendly ? you.pet_target : MHITYOU,
- god_gift ? MF_GOD_GIFT : 0)) != -1)
+ god_gift ? MG_GOD_GIFT : 0)) != -1)
{
success = true;