-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backrooms] Update to use indestructible terrain, whitelist and EXTER…
…NAL_OPTIONs (#74434) * Update backrooms * "extend" and "delete" support for map_extra s * Add "connects_to" to allow the light/non-light floors to multitile * Add Backrooms label and add the maintainer as a reviewer * Removes unnecessary world setting advice Cities being disabled by external option means this no longer does anything
- Loading branch information
Showing
9 changed files
with
265 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[ | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_CITIES", | ||
"info": "Allows to place cities during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_ROADS", | ||
"info": "Allows to place procgen roads during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_POPULATE_OUTSIDE_CONNECTIONS_FROM_NEIGHBORS", | ||
"info": "Allows to populate outside connections from neighbors.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_RIVERS", | ||
"info": "Allows to place procgen rivers during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_LAKES", | ||
"info": "Allows to place procgen lakes during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_OCEANS", | ||
"info": "Allows to place oceans during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_FORESTS", | ||
"info": "Allows to place procgen forests during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_SWAMPS", | ||
"info": "Allows to place procgen swamps during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_RAVINES", | ||
"info": "Allows to place procgen ravines during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_FOREST_TRAILS", | ||
"info": "Allows to place procgen forest trails during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_FOREST_TRAILHEADS", | ||
"info": "Allows to place procgen forest trailheads during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.