Skip to content

Commit

Permalink
Merge pull request #1084 from myk002/myk_quantum
Browse files Browse the repository at this point in the history
[gui/quantum] fix output stockpile type for stockpiles
  • Loading branch information
myk002 authored Apr 24, 2024
2 parents 947fefe + adfdb0c commit d6b50b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Template for new versions:
## New Features

## Fixes
- `gui/quantum`: accept all item types in the output stockpile as intended

## Misc Improvements

Expand Down
2 changes: 1 addition & 1 deletion gui/quantum.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ local function get_quantumsp_data(name)
local next_route_id = df.global.plotinfo.hauling.next_id
name = ('Quantum %d'):format(next_route_id-1)
end
return ('ry{name="%s" quantum=true}'):format(name)
return ('ry{name="%s" quantum=true}:+all'):format(name)
end

-- this function assumes that is_valid_pos() has already validated the positions
Expand Down

0 comments on commit d6b50b9

Please sign in to comment.