summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 6fa1b88ade..e933640067 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -3124,8 +3124,7 @@ static void open_door(int move_x, int move_y, bool check_confused)
if (you.attribute[ATTR_HELD])
{
- // struggles against net, damaging it
- free_self_from_net(true);
+ free_self_from_net();
you.turn_is_over = true;
return;
}
@@ -3536,8 +3535,7 @@ static void move_player(int move_x, int move_y)
if (you.attribute[ATTR_HELD])
{
- // tries to escape from net (without damaging it, takes longer)
- free_self_from_net(false);
+ free_self_from_net();
you.turn_is_over = true;
return;
}