summaryrefslogtreecommitdiff
path: root/server/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/core')
-rw-r--r--server/src/core/vm.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/src/core/vm.lua b/server/src/core/vm.lua
index 36a8f21b..a17727d6 100644
--- a/server/src/core/vm.lua
+++ b/server/src/core/vm.lua
@@ -1383,6 +1383,10 @@ function mt:doLocalFunction(action)
end
function mt:doAction(action)
+ if not action then
+ -- Skip
+ return
+ end
local tp = action.type
if tp == 'do' then
self:doDo(action)