diff options
-rw-r--r-- | engines/wage/combat.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/wage/combat.cpp b/engines/wage/combat.cpp index 4bd62b81fc..96235d7da1 100644 --- a/engines/wage/combat.cpp +++ b/engines/wage/combat.cpp @@ -471,6 +471,7 @@ bool WageEngine::handleStatusCommand() { if (uses > 0) { snprintf(buf, 512, "Your %s has %d uses left.", (*it)->_name.c_str(), uses); + appendText(buf); } } @@ -544,6 +545,7 @@ bool WageEngine::handleDropCommand(const char *target) { char buf[256]; snprintf(buf, 256, "You no longer have the %s.", (*it)->_name.c_str()); + appendText(buf); _world->move(*it, _world->_player->_currentScene); handled = true; |