Deobfuscation not working with Architectury Loom and Forge #1054
Answered
by
shedaniel
ctrlaltmilk
asked this question in
Q & A
-
|
I can't tell if this is an actual problem or if I'm just being stupid, but no matter what I try I can't get REI to deobfuscate properly. I'm using Architectury Loom on Forge, with this as my build.gradle.kts: plugins {
id("dev.architectury.loom").version("0.12.0-SNAPSHOT")
}
version = "0.1.0"
loom {
silentMojangMappingsLicense()
forge {
mixinConfig("tfgr.mixins.json")
}
}
repositories {
maven(url="https://maven.shedaniel.me")
}
dependencies {
minecraft("com.mojang:minecraft:1.18.2")
mappings(loom.officialMojangMappings())
forge("net.minecraftforge:forge:1.18.2-40.1.60")
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api-forge:8.3.502")
modCompileOnly("me.shedaniel:RoughlyEnoughItems-default-plugin-forge:8.3.502")
modRuntimeOnly("me.shedaniel:RoughlyEnoughItems-forge:8.3.510")
}When looking at the API files, all net.minecraft.* classes are in their Searge mappings form. Here are the imports for EntryIngredients.java: import com.google.common.collect.ImmutableList;
import dev.architectury.fluid.FluidStack;
import me.shedaniel.rei.api.common.entry.EntryIngredient;
import me.shedaniel.rei.api.common.entry.EntryStack;
import me.shedaniel.rei.api.common.entry.type.EntryDefinition;
import me.shedaniel.rei.api.common.entry.type.EntryType;
import me.shedaniel.rei.api.common.entry.type.VanillaEntryTypes;
import net.minecraft.class_1799;
import net.minecraft.class_1856;
import net.minecraft.class_1935;
import net.minecraft.class_2378;
import net.minecraft.class_2499;
import net.minecraft.class_2520;
import net.minecraft.class_3611;
import net.minecraft.class_5321;
import net.minecraft.class_6862;
import net.minecraft.class_6880;
import net.minecraft.class_6885;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.function.Function;I don't really know what could be causing this, so any advice would really help. |
Beta Was this translation helpful? Give feedback.
Answered by
shedaniel
Aug 5, 2022
Replies: 1 comment
-
|
Let's go to the architectury discord server to support. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
shedaniel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let's go to the architectury discord server to support.