Skip to content

Commit

Permalink
fix passing pset_number in delete action
Browse files Browse the repository at this point in the history
  • Loading branch information
dndrks committed Mar 31, 2022
1 parent b90ed07 commit 7f98bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/core/paramset.lua
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ function ParamSet:read(filename, silent)
end
end
if self.action_read ~= nil then
if pset_number ~= nil then
if pset_number == nil then
self.action_read(filename,silent)
else
self.action_read(filename,silent,pset_number)
Expand Down

0 comments on commit 7f98bb2

Please sign in to comment.