aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/lol.h
diff options
context:
space:
mode:
authorathrxx2011-06-19 00:58:16 +0200
committerathrxx2011-06-19 00:59:16 +0200
commit48e5bd36e9722d87787d077e34ca28a454cc14f1 (patch)
tree8a3c224a9b3d7546702f6a9b875fec903412b6f1 /engines/kyra/lol.h
parent0246bdf74ea815623e9997b84b88d26b6ef075cf (diff)
downloadscummvm-rg350-48e5bd36e9722d87787d077e34ca28a454cc14f1.tar.gz
scummvm-rg350-48e5bd36e9722d87787d077e34ca28a454cc14f1.tar.bz2
scummvm-rg350-48e5bd36e9722d87787d077e34ca28a454cc14f1.zip
LOL: fix bug reported on forum
In cases where the script failed to delete a certain character from the party (because that character was not a party member) it would add this character to the party instead. E.g. when returning to Gladstone without having picked up Timothy, he would get added to the party after the throne room scene. The same happened with Lora at the Draracle if she wasn't picked up on the way.
Diffstat (limited to 'engines/kyra/lol.h')
-rw-r--r--engines/kyra/lol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/lol.h b/engines/kyra/lol.h
index 943bb7f8d5..06a4f29f63 100644
--- a/engines/kyra/lol.h
+++ b/engines/kyra/lol.h
@@ -717,7 +717,7 @@ private:
int olol_setScriptTimer(EMCState *script);
int olol_createHandItem(EMCState *script);
int olol_playAttackSound(EMCState *script);
- int olol_characterJoinsParty(EMCState *script);
+ int olol_addRemoveCharacter(EMCState *script);
int olol_giveItem(EMCState *script);
int olol_loadTimScript(EMCState *script);
int olol_runTimScript(EMCState *script);