Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Template for new versions:
- `list-agreements`: fix date math when determining petition age
- `gui/petitions`: fix date math when determining petition age
- `gui/rename`: fix commandline processing when manually specifying target ids
- `gui/sandbox`: restore metal equipment options when spawning units

## Misc Improvements
- `fix/loyaltycascade`: now also breaks up brawls and other intra-fort conflicts that *look* like loyalty cascades
Expand Down
2 changes: 1 addition & 1 deletion gui/sandbox.lua
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ local function init_arena()
-- for i in ipairs(df.builtin_mats) do
-- do_insert(MAT_TABLE.builtin[i], i, -1)
-- end
for i, mat in ipairs(RAWS.inorganics) do
for i, mat in ipairs(RAWS.inorganics.all) do
do_insert(mat.material, 0, i)
-- stop at the first "special" metal. we don't need more than that
if mat.flags.DEEP_SPECIAL then break end
Expand Down