From 3df5097121204b06cf842c29310102b9ef7e05c4 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 27 Aug 2025 01:35:33 +0200 Subject: [PATCH] Update bootstrapper-manual for 0.11.10 --- bootstrapper-manual.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &.>, 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.r| create replacements, e.g. r|A|Z replaces all instances of A with Z in affected metadata.s| create regex substitutions, e.g. s|(.+)=1|$1=0 would change HasCooldown=1 to be HasCooldown=0.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.