Testing Bdew's title injector, might work better now that EnumExtend seems to be broken
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package mod.sin.wyvern.mastercraft;
|
||||
|
||||
import javassist.CannotCompileException;
|
||||
import javassist.ClassPool;
|
||||
import javassist.NotFoundException;
|
||||
import javassist.bytecode.BadBytecode;
|
||||
|
||||
public class AchievementTitles {
|
||||
public static int gremlinSlayerTitleID = 704;
|
||||
public static void register(ClassPool cp) throws NotFoundException, BadBytecode, CannotCompileException {
|
||||
TitleInjector injector = new TitleInjector(cp);
|
||||
injector.addTitle("GremlinSlayer", gremlinSlayerTitleID, "Gremlin Slayer", "Gremlin Slayer", -1, "NORMAL");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user