aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/script.cpp
diff options
context:
space:
mode:
authorĽubomír Remák2018-03-08 23:05:44 +0100
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commitb4dad9bca7593029ab368bc99f7bd96c71cbf4d8 (patch)
tree108ff4ccbf9c7577c637184153cdf702f4dbbdb9 /engines/mutationofjb/script.cpp
parentdae522f63c05029298da1694038af9b24655ac05 (diff)
downloadscummvm-rg350-b4dad9bca7593029ab368bc99f7bd96c71cbf4d8.tar.gz
scummvm-rg350-b4dad9bca7593029ab368bc99f7bd96c71cbf4d8.tar.bz2
scummvm-rg350-b4dad9bca7593029ab368bc99f7bd96c71cbf4d8.zip
MUTATIONOFJB: Show multiple script commands in showsection debug command.
Diffstat (limited to 'engines/mutationofjb/script.cpp')
-rw-r--r--engines/mutationofjb/script.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/mutationofjb/script.cpp b/engines/mutationofjb/script.cpp
index 98b1727935..1b11545741 100644
--- a/engines/mutationofjb/script.cpp
+++ b/engines/mutationofjb/script.cpp
@@ -31,6 +31,9 @@
#include "mutationofjb/commands/endblockcommand.h"
#include "mutationofjb/commands/changecommand.h"
#include "mutationofjb/commands/saycommand.h"
+#include "mutationofjb/commands/additemcommand.h"
+#include "mutationofjb/commands/removeitemcommand.h"
+#include "mutationofjb/commands/removeallitemscommand.h"
namespace MutationOfJB {
@@ -43,6 +46,9 @@ static CommandParser** getParsers() {
new ChangeStaticCommandParser,
new ChangeSceneCommandParser,
new SayCommandParser,
+ new AddItemCommandParser,
+ new RemoveItemCommandParser,
+ new RemoveAllItemsCommandParser,
nullptr
};