GITLAB
wasteland
/
server
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
27acaa110e24db0cf1856004510f322893516927
Authored by
zhanghualin
2021-10-28 01:48:06 +0800
1 parent
af6197fd
修复一个 nil 带来的报错
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/actions/RadioAction.lua
Inline
Side-by-side
src/actions/RadioAction.lua
Wrap text
Show/Hide comments
View file @
27acaa1
...
...
@@ -137,7 +137,7 @@ function _M.startQuestRpc(agent, data)
137
137
138
138
else
139
139
--活动 同时只能有一个存在
140
- if
actids[config.activity_ctrl_id]
>= 1 then
140
+ if
(actids[config.activity_ctrl_id] or 0)
>= 1 then
141
141
return 5
142
142
end
143
143
end
...
...