summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 7ed6249e18..8d64311eb0 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -309,6 +309,7 @@ bool wield_weapon(bool auto_wield, int slot, bool show_weff_messages)
canned_msg(MSG_EMPTY_HANDED);
+ // Switching to bare hands is extra fast.
you.turn_is_over = true;
you.time_taken *= 3;
you.time_taken /= 10;
@@ -3158,7 +3159,7 @@ bool puton_item(int item_slot, bool prompt_finger)
jewellery_wear_effects( you.inv[item_slot] );
// Putting on jewellery is as fast as wielding weapons.
- you.time_taken = you.time_taken * 5 / 10;
+ you.time_taken /= 2;
you.turn_is_over = true;
return (true);