summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 0d55a0893b..a2c627f6b1 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -37,6 +37,7 @@
#include "randart.h"
#include "religion.h"
#include "spl-util.h"
+#include "stash.h"
#include "state.h"
#include "stuff.h"
#include "travel.h"
@@ -543,8 +544,8 @@ static void finish_delay(const delay_queue_item &delay)
unwear_armour( delay.parm1 );
- you.redraw_armour_class = 1;
- you.redraw_evasion = 1;
+ you.redraw_armour_class = true;
+ you.redraw_evasion = true;
break;
}
case DELAY_EAT:
@@ -655,6 +656,7 @@ static void finish_delay(const delay_queue_item &delay)
{
mpr("You stop butchering the corpse.");
}
+ stashes.update_stash(); // Stash-track the generated item(s)
break;
}