diff options
| -rw-r--r-- | state.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ class State # Parameters to this state def params @deps.map{ |x| x.params }.inject({}){ |x,y| x.merge y }.merge \ - @holds.map{ |x| x.params }.inject{ |x,y| x.merge y } + @holds.map{ |x| x.params }.inject({}){ |x,y| x.merge y } end # Set this state to untrue without running any falling edge code |
