Skip to content

Commit

Permalink
WAGE: Added missing messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Feb 14, 2016
1 parent 47b3f40 commit 9713e26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engines/wage/combat.cpp
Expand Up @@ -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);
}
}

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 9713e26

Please sign in to comment.