From 9babb22348091678be18fe90151d0f8e69e65132 Mon Sep 17 00:00:00 2001
From: Zeno Rogue <zeno@attnam.com>
Date: Thu, 25 Jan 2018 17:23:16 +0100
Subject: [PATCH] changed message when activating orbs from OSM

---
 inventory.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/inventory.cpp b/inventory.cpp
index b8ca05b9..e5a8015d 100644
--- a/inventory.cpp
+++ b/inventory.cpp
@@ -430,6 +430,8 @@ namespace inv {
     if(us) s += XLAT(" (used %1 times)", its(us));
     return s;
     }
+  
+  bool activating;
 
   void show() {
   
@@ -595,7 +597,10 @@ namespace inv {
         else {
           eItem it = cwt.c->item; 
           cwt.c->item = orbmap[uni];
+          inv::activating = true;
           collectItem(cwt.c, true);
+          inv::activating = false;
+          addMessage(XLAT("You activate %the1.", orbmap[uni]));
           if(!cwt.c->item) usedup[orbmap[uni]]++;
           if(getOLR(it, getPrizeLand()) == olrForbidden)
             usedForbidden = true;