Akashic Tome

Akashic Tome

75M Downloads

[Suggestion] Mod Side API

Selim042 opened this issue ยท 2 comments

commented

Would it be easily possible to add a simple API for mod devs that would like to include their "books" that don't fit any of the patterns already included? Or would it just be easier to include it via config?

commented

This would be easy enough, just adding an empty interface IModdedBook and adding the following to
AttachmentRecipe#isTarget

if (stack.getItem() instanceof IModdedBook){
    return true;
}
commented

Capabilities would probably be a better idea, less hard dependencies.