Skip to content

Commit db56aac

Browse files
committed
More docs
1 parent 031060d commit db56aac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/environment/Environment-Construction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This call gives you the listings after they have been transformed by any `Transf
5656
Order between multiple `TransformModListings` is respected, but will always come after any `TransformLoadOrderListings` calls.
5757

5858
### WithOutputMod
59-
This lets you mix in a mod that you plan on exporting content with. It will be added to the end of the LinkCache as a mutable mod that is safe to change. You can put multiple `WithOutputMod` calls in your builder chain, and the order they appear will determine how they're placed on the Load Order and which ends up being the winning override.
59+
This lets you mix in a mod that you plan on exporting content with. You can put multiple `WithOutputMod` calls in your builder chain.
6060

6161
#### Load Order Trimming
6262
When using WithOutputMod, be aware that this modifies the Load Order the environment will provide you to be trimmed so that it doesn't include the outgoing mod and anything after it. The Load Order presented by the environment represents the existing mods to consider while building the output mod, and as such, excludes the outgoing mod itself, and anything after it.
@@ -67,7 +67,7 @@ This is to help avoid:
6767
- Adding masters to the outgoing mod from mods after itself in the load order (not allowed)
6868

6969
#### Link Cache
70-
The Link Cache made by the environment with an output mod will include the Load Order mods PLUS the outgoing mod. Lookups against the Link Cache WILL resolve objects from your outgoing mod appropriately. Outgoing mods are registered in the Link Cache in a non-caching fashion, so edits to your outgoing mod will reflect in subsequent lookups appropriately.
70+
The Link Cache made by the environment with an output mod will include the Load Order mods PLUS the outgoing mod(s) at the end. Lookups against the Link Cache WILL resolve objects from your outgoing mod appropriately. Outgoing mods are registered in the Link Cache in a non-caching fashion, so edits to your outgoing mod will reflect in subsequent lookups appropriately.
7171

7272
#### Further Customization
7373
If you want to break away from the default behaviors described above, you can always make your own Load Order and Link Cache objects that contain different content the way you want them.

0 commit comments

Comments
 (0)