PetteriM1 submitted a new resource:
BlockAPI - Make it easy for plugin devs to change block behaviours
BlockAPI - Make it easy for plugin devs to change block behaviours
Read more about this resource...With BlockAPI plugin developers can easily replace blocks with custom ones to change their behaviour
Notice:
- It is recommended that the new block extends the original block to avoid problems
- All the plugins which doesn't use Block.get() won't use the replaced blocks
API methods:
Register a block
me.petterim1.blockapi.API.registerBlock(int blockId, Class<? extends Block> blockClass)
Register multiple blocks
me.petterim1.blockapi.API.registerBlocks(Map<Integer...