diff --git a/bootstrapper-manual.html b/bootstrapper-manual.html index 7995a6f..6305398 100644 --- a/bootstrapper-manual.html +++ b/bootstrapper-manual.html @@ -141,7 +141,7 @@
  • > /First/Path & /Second/Path starts a patch that will be applied to /First/Path and /Second/Path. It is possible to stretch this over multiple lines by either ending a line with & or starting the new line &.
  • Any line not starting with a special token (>, r|, ...) is added as a prefix to all affected metadata. This works to add top-level properties but also to replace them because the game resolves duplicates by ignoring subsequent entries.
  • Lines starting with r| create replacements, e.g. r|A|Z replaces all instances of A with Z in affected metadata.
  • -
  • Lines starting with s| create regex substitutions, e.g. s|(.+)=1|$1=0 would change HasCooldown=1 to be HasCooldown=0.
  • +
  • Lines starting with s| create regex substitutions, e.g. s|^(.+)=1$|$1=0|m would replace a value of 1 on any line with a 0, using the 'm' flag here so ^ and $ also match on line boundaries. See here for more information about the Regex engine.
  • If multiple patches affect the same absolute path, they are combined.