Add work around for script bug in The Feeble Files.

svn-id: r31260
This commit is contained in:
Travis Howell 2008-03-27 01:01:52 +00:00
parent c4f15a7076
commit 4d51eb5fb7

View File

@ -255,6 +255,11 @@ void AGOSEngine::o_add() {
// 43: add
uint var = getVarWrapper();
writeVariable(var, readVariable(var) + getVarOrWord());
// WORKAROUND: The converation of the male in Vid-Phone Booth at Dave's Space Bar
// is based on variable 116, but stops due to a missing option (37).
if (getGameType() == GType_FF && _currentTable->id == 10538 && readVariable(116) == 37)
writeVariable(116, 38);
}
void AGOSEngine::o_sub() {