aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/script.cpp
diff options
context:
space:
mode:
authorĽubomír Remák2018-10-31 19:19:41 +0100
committerĽubomír Remák2018-10-31 19:19:41 +0100
commitb87391338e1e91aa213247420e4bfcb7e09e984d (patch)
treef676f490be356a22884e83ba6a6cf62c55726286 /engines/mutationofjb/script.cpp
parent3fb3f659f74e0682fe0ef3ab0dca7a47a0108a58 (diff)
downloadscummvm-rg350-b87391338e1e91aa213247420e4bfcb7e09e984d.tar.gz
scummvm-rg350-b87391338e1e91aa213247420e4bfcb7e09e984d.tar.bz2
scummvm-rg350-b87391338e1e91aa213247420e4bfcb7e09e984d.zip
MUTATIONOFJB: Add basic support for RABLOAD command.
Also fix an issue with parsing IF command. This commit makes the game completable (with many issues).
Diffstat (limited to 'engines/mutationofjb/script.cpp')
-rw-r--r--engines/mutationofjb/script.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mutationofjb/script.cpp b/engines/mutationofjb/script.cpp
index 4915530f32..a4bbb8f1ef 100644
--- a/engines/mutationofjb/script.cpp
+++ b/engines/mutationofjb/script.cpp
@@ -48,6 +48,7 @@
#include "mutationofjb/commands/setcolorcommand.h"
#include "mutationofjb/commands/specialshowcommand.h"
#include "mutationofjb/commands/switchpartcommand.h"
+#include "mutationofjb/commands/loadplayercommand.h"
#include "mutationofjb/game.h"
namespace MutationOfJB {
@@ -79,6 +80,7 @@ static CommandParser **getParsers() {
new SetColorCommandParser,
new SpecialShowCommandParser,
new SwitchPartCommandParser,
+ new LoadPlayerCommandParser,
nullptr
};