You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make extensions of this mod for my modpack,but when i use mixin to AbstractSpell.class and build. Return Errors
����: Unable to locate obfuscation mapping for @shadow field @shadow protected int baseManaCost;
^
����: Unable to locate obfuscation mapping for @shadow field @shadow protected int manaCostPerLevel;
^
����: Unable to locate obfuscation mapping for @shadow method @shadow public abstract int getLevel(int level, @org.jetbrains.annotations.Nullable LivingEntity caster);
^
����: Unable to locate obfuscation mapping for @overwrite method
public int getManaCost(int level, @nullable LivingEntity caster) {
^
I want to make extensions of this mod for my modpack,but when i use mixin to AbstractSpell.class and build. Return Errors
����: Unable to locate obfuscation mapping for @shadow field
@shadow protected int baseManaCost;
^
����: Unable to locate obfuscation mapping for @shadow field
@shadow protected int manaCostPerLevel;
^
����: Unable to locate obfuscation mapping for @shadow method
@shadow public abstract int getLevel(int level, @org.jetbrains.annotations.Nullable LivingEntity caster);
^
����: Unable to locate obfuscation mapping for @overwrite method
public int getManaCost(int level, @nullable LivingEntity caster) {
^
import io.redspace.ironsspellbooks.api.spells.AbstractSpell;
import io.redspace.ironsspellbooks.config.ServerConfigs;
import net.minecraft.world.entity.LivingEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;
import org.spongepowered.asm.mixin.Shadow;
import javax.annotation.Nullable;
@mixin(AbstractSpell.class)
public abstract class AbstractSpellMixin {
@shadow protected int baseManaCost;
}
The text was updated successfully, but these errors were encountered: