-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Botania Support #54
Botania Support #54
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few things and an example script file and it'll be ready.
if (subClass.getSimpleName().equals("Mini") && SubTileEntity.class.isAssignableFrom(subClass)) { | ||
BotaniaAPI.registerMiniSubTile(name + "Chibi", (Class<? extends SubTileEntity>) subClass, name); | ||
BotaniaAPI.registerSubTileSignature((Class<? extends SubTileEntity>) subClass, new BasicSignature(name + "Chibi")); | ||
BotaniaAPI.addSubTileToCreativeMenu(name); | ||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was some scuffed requirement in Botania's internal registration, perhaps make this more clearer and explicit?
Adds support for Botania.
Adds recipes additon/removal for:
Adds support for adding/removing blocks and items from the magnet blacklist.
Adds convenience methods for registering custom flowers.
Adds support for adding custom brews.
Adds support for adding custom knowledge types.
Adds support for adding/removing lexicon categories.
Adds support for adding/removing lexicon entries.
Adds support for adding/removing lexicon pages.