From 6b14c5c95c0ee0e717318d2d202ebe9ac6bc3b7b Mon Sep 17 00:00:00 2001 From: Player Date: Tue, 29 Jul 2025 15:03:44 -0400 Subject: [PATCH] Re-enable inferring missing mappings from the source namespace --- src/main/java/net/fabricmc/tinyremapper/TinyUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/fabricmc/tinyremapper/TinyUtils.java b/src/main/java/net/fabricmc/tinyremapper/TinyUtils.java index efd894e5..d95e96ef 100644 --- a/src/main/java/net/fabricmc/tinyremapper/TinyUtils.java +++ b/src/main/java/net/fabricmc/tinyremapper/TinyUtils.java @@ -98,7 +98,7 @@ private static MappingVisitor createAdapter(String fromNs, String toNs, MappingA new FlatAsRegularMappingVisitor(new MappingAdapter(out)), toNs), fromNs, - true); + false); // infers mappings for non-obfuscated names from the src ns } private static final class MappingAdapter implements FlatMappingVisitor {