aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2018-08-23 00:36:59 +0300
committerFilippos Karapetis2018-08-23 01:59:26 +0300
commit4dc9f0e66d3a18f2906e9c2e8064a2a8de8b940f (patch)
treeb8e9129c9ec98bb4cb5d26ad811436a6fb98b252
parent5e2db7a1788573ea7e5683d6a9d56a8f55ec485d (diff)
downloadscummvm-rg350-4dc9f0e66d3a18f2906e9c2e8064a2a8de8b940f.tar.gz
scummvm-rg350-4dc9f0e66d3a18f2906e9c2e8064a2a8de8b940f.tar.bz2
scummvm-rg350-4dc9f0e66d3a18f2906e9c2e8064a2a8de8b940f.zip
SCI32: Fix attacking necrotaurs with the sword in QFG4
Fixes bug #10419
-rw-r--r--engines/sci/engine/workarounds.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp
index 766fdcc20c..3e9c463684 100644
--- a/engines/sci/engine/workarounds.cpp
+++ b/engines/sci/engine/workarounds.cpp
@@ -88,6 +88,7 @@ const SciWorkaroundEntry arithmeticWorkarounds[] = {
{ GID_QFG2, 200, 200, 0, "astro", "messages", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // op_lsi: when getting asked for your name by the astrologer - bug #5152
{ GID_QFG3, 780, 999, 0, "", "export 6", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // op_add: trying to talk to yourself at the top of the giant tree - bug #6692
{ GID_QFG4, 710,64941, 0, "RandCycle", "doit", NULL, 0, 0, { WORKAROUND_FAKE, 1 } }, // op_gt: when the tentacle appears in the third room of the caves
+ { GID_QFG4, -1, 870, 0, "hurtMyself", "changeState", NULL, 0, 0, { WORKAROUND_FAKE, 1 } }, // op_or: when hitting a necrotaur with a sword as a paladin
{ GID_TORIN, 51400,64928, 0, "Blink", "init", NULL, 0, 0, { WORKAROUND_FAKE, 1 } }, // op_div: when Lycentia knocks Torin out after he removes her collar
SCI_WORKAROUNDENTRY_TERMINATOR
};