diff options
| -rw-r--r-- | engines/agos/script_e2.cpp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/engines/agos/script_e2.cpp b/engines/agos/script_e2.cpp index 0ddb982d3a..7a6c6327aa 100644 --- a/engines/agos/script_e2.cpp +++ b/engines/agos/script_e2.cpp @@ -652,6 +652,16 @@ void AGOSEngine_Elvira2::oe2_isAdjNoun() {  	// 179: item unk1 unk2 is  	Item *item = getNextItemPtr();  	int16 a = getNextWord(), b = getNextWord(); + +	if (getGameType() == GType_ELVIRA2) { +		// WORKAROUND: A NULL item can occur when interacting with Wine Bottles +		if (item == NULL) { +			printf("Please report where exactly this occurs in Elvira 2.\n"); +			setScriptCondition(false); +			return; +		} +	} +  	setScriptCondition(item->adjective == a && item->noun == b);  } | 
