diff options
-rw-r--r-- | engines/agos/script_e2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/script_e2.cpp b/engines/agos/script_e2.cpp index 53f9833b06..a8f5e35547 100644 --- a/engines/agos/script_e2.cpp +++ b/engines/agos/script_e2.cpp @@ -654,9 +654,9 @@ void AGOSEngine_Elvira2::oe2_isAdjNoun() { int16 a = getNextWord(), b = getNextWord(); if (getGameType() == GType_ELVIRA2) { - // WORKAROUND: A NULL item can occur when interacting with Wine Bottles + // WORKAROUND bug #1745996: A NULL item can occur when + // interacting with items in the dinning room if (item == NULL) { - warning("Please report where exactly this occurs in Elvira 2"); setScriptCondition(false); return; } |