[Scummvm-cvs-logs] scummvm master -> ee0d3b609ff9d30f94ee506dd467fc0e38360bc8
urukgit
urukgit at users.noreply.github.com
Wed Jan 15 20:23:05 CET 2014
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ee0d3b609f AVALANCHE: Repair bug regarding speaking in bed.
Commit: ee0d3b609ff9d30f94ee506dd467fc0e38360bc8
https://github.com/scummvm/scummvm/commit/ee0d3b609ff9d30f94ee506dd467fc0e38360bc8
Author: uruk (koppirnyo at gmail.com)
Date: 2014-01-15T11:22:30-08:00
Commit Message:
AVALANCHE: Repair bug regarding speaking in bed.
Changed paths:
engines/avalanche/parser.cpp
diff --git a/engines/avalanche/parser.cpp b/engines/avalanche/parser.cpp
index 34cdb95..10a4de3 100644
--- a/engines/avalanche/parser.cpp
+++ b/engines/avalanche/parser.cpp
@@ -1702,7 +1702,7 @@ void Parser::doThat() {
"Try restarting, or restoring a saved game!");
return;
}
- if (!_vm->_avvyIsAwake && (_verb != kVerbCodeDie) && (_verb != kVerbCodeExpletive) && (_verb != kVerbCodeWake)) {
+ if (!_vm->_avvyIsAwake && (_verb != kVerbCodeWake)) {
_vm->_dialogs->displayText("Talking in your sleep? Try waking up!");
return;
}
More information about the Scummvm-git-logs
mailing list