summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/src/matcher/vm.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/matcher/vm.lua b/server/src/matcher/vm.lua
index 0633934d..e1da6a81 100644
--- a/server/src/matcher/vm.lua
+++ b/server/src/matcher/vm.lua
@@ -1053,6 +1053,7 @@ function mt:doAction(action)
elseif tp == 'local' then
self:doLocal(action)
elseif tp == 'simple' then
+ -- call
self:getSimple(action, 'value')
elseif tp == 'if' then
self:doIf(action)
@@ -1068,6 +1069,8 @@ function mt:doAction(action)
self:doFunction(action)
elseif tp == 'localfunction' then
self:doLocalFunction(action)
+ else
+ self:getExp(action)
end
end