summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
commitad4ca5b13b459048f876589d797fe0dccbdec259 (patch)
tree3fa0d7048b99ae3dae2275eb98eb60ae856ebc93 /src
parent5e42771bae33ca475447dc34610addad8efdb74f (diff)
Remove dead code
Diffstat (limited to 'src')
-rw-r--r--src/cmd5.cc43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/cmd5.cc b/src/cmd5.cc
index 5850f3ce..d3d072b8 100644
--- a/src/cmd5.cc
+++ b/src/cmd5.cc
@@ -533,49 +533,6 @@ void fetch(int dir, int wgt, bool_ require_los)
/*
- * Handle random effects of player shrieking
- */
-void shriek_effect()
-{
- switch (randint(9))
- {
- case 1:
- case 5:
- case 8:
- case 9:
- {
- msg_print("You make a high-pitched shriek!");
- aggravate_monsters(1);
-
- break;
- }
- case 2:
- case 6:
- {
- msg_print("Oops! You call a monster.");
- summon_specific(p_ptr->py, p_ptr->px, max_dlv[dungeon_type], 0);
-
- break;
- }
- case 3:
- case 7:
- {
- msg_print("The dungeon collapses!");
- earthquake(p_ptr->py, p_ptr->px, 5);
-
- break;
- }
- case 4:
- {
- msg_print("Your shriek is so horrible that you damage your health!");
- take_hit(damroll(p_ptr->lev / 5, 8), "inner hemorrhaging");
-
- break;
- }
- }
-}
-
-/*
* Return the symbiote's name or description.
*/
cptr symbiote_name(bool_ capitalize)