diff options
author | Paul Gilbert | 2017-08-15 19:42:41 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-15 19:42:41 -0400 |
commit | ede1cbc4cadbdb56d28e0c67d0eb69c81a66971f (patch) | |
tree | 7047efdd1935ba652384de5072581cc32de75ac9 /engines | |
parent | e8d27c782efa69bc5763c7cb75d7eebd832e581f (diff) | |
download | scummvm-rg350-ede1cbc4cadbdb56d28e0c67d0eb69c81a66971f.tar.gz scummvm-rg350-ede1cbc4cadbdb56d28e0c67d0eb69c81a66971f.tar.bz2 scummvm-rg350-ede1cbc4cadbdb56d28e0c67d0eb69c81a66971f.zip |
TITANIC: Removed dead code from CParrot::ActMsg
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/npcs/parrot.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/titanic/npcs/parrot.cpp b/engines/titanic/npcs/parrot.cpp index 60d11c0a6e..a0f80ca69b 100644 --- a/engines/titanic/npcs/parrot.cpp +++ b/engines/titanic/npcs/parrot.cpp @@ -119,10 +119,7 @@ void CParrot::load(SimpleFile *file) { } bool CParrot::ActMsg(CActMsg *msg) { - if (msg->_action == "PistaccioEaten") { - CActMsg actMsg("NutsEaten"); - actMsg.execute("Ear2"); - } else if (msg->_action == "Chicken") { + if (msg->_action == "Chicken") { // Nothing to do } else if (msg->_action == "CarryParrotLeftView") { if (!_takeOff) { |