summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-02-23 09:12:00 +0100
committerBardur Arantsson <bardur@scientician.net>2015-02-23 09:12:00 +0100
commit56097f144062c8b6ec894020fc7cf31b8516816d (patch)
tree1ec7a4fdd3550e78bce6a737fc9de0ecbff91e53
parentc98d4f1a479f1d4a5e74e8107e73949938c82709 (diff)
Remove dead code
-rw-r--r--src/externs.h2
-rw-r--r--src/spells2.cc16
2 files changed, 0 insertions, 18 deletions
diff --git a/src/externs.h b/src/externs.h
index ea764bc6..10cadf91 100644
--- a/src/externs.h
+++ b/src/externs.h
@@ -1161,7 +1161,6 @@ extern bool_ heal_monster(int dir);
extern bool_ speed_monster(int dir);
extern bool_ slow_monster(int dir);
extern bool_ sleep_monster(int dir);
-extern bool_ stasis_monster(int dir);
extern bool_ confuse_monster(int dir, int plev);
extern bool_ stun_monster(int dir, int plev);
extern bool_ fear_monster(int dir, int plev);
@@ -1186,7 +1185,6 @@ extern bool_ charm_monsters(int dam);
extern bool_ charm_animals(int dam);
extern bool_ charm_demons(int dam);
extern bool_ stun_monsters(int dam);
-extern bool_ stasis_monsters(int dam);
extern bool_ banish_monsters(int dist);
extern bool_ turn_monsters(int dam);
extern bool_ turn_evil(int dam);
diff --git a/src/spells2.cc b/src/spells2.cc
index 19717dcd..9cbeb333 100644
--- a/src/spells2.cc
+++ b/src/spells2.cc
@@ -6850,13 +6850,6 @@ bool_ sleep_monster(int dir)
}
-bool_ stasis_monster(int dir)
-{
- int flg = PROJECT_STOP | PROJECT_KILL;
- return (project_hook(GF_STASIS, dir, p_ptr->lev, flg));
-}
-
-
bool_ confuse_monster(int dir, int plev)
{
int flg = PROJECT_STOP | PROJECT_KILL;
@@ -7555,15 +7548,6 @@ bool_ stun_monsters(int dam)
/*
- * Stasis monsters
- */
-bool_ stasis_monsters(int dam)
-{
- return (project_hack(GF_STASIS, dam));
-}
-
-
-/*
* Mindblast monsters
*/
bool_ mindblast_monsters(int dam)