You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
552 B
Java
22 lines
552 B
Java
package com.zivilon.cinder_loe.mixins;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.Overwrite;
|
|
import org.spongepowered.asm.mixin.Shadow;
|
|
|
|
import lotr.common.entity.npc.LOTREntityNPC;
|
|
import lotr.common.entity.npc.LOTREntitySauron;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
@Mixin(LOTREntitySauron.class)
|
|
public abstract class MixinLOTREntitySauron extends LOTREntityNPC {
|
|
MixinLOTREntitySauron(World world) {
|
|
super(world);
|
|
}
|
|
|
|
public void setupNPCName() {
|
|
this.familyInfo.setName("Sauron");
|
|
}
|
|
}
|