Interface InspectionAddon


public interface InspectionAddon
Optional extension point for adding custom lines to inspection results. Other mods can call InspectionAddonRegistry.register(InspectionAddon) in their setup method.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    augmentBlock(com.hypixel.hytale.server.core.asset.type.blocktype.config.BlockType blockType, List<InspectionLine> lines)
     
    default void
    augmentEntity(com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, com.hypixel.hytale.component.Ref<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> entityRef, List<InspectionLine> lines)
     
    id()
     
  • Method Details

    • id

      String id()
    • augmentBlock

      default void augmentBlock(com.hypixel.hytale.server.core.asset.type.blocktype.config.BlockType blockType, List<InspectionLine> lines)
    • augmentEntity

      default void augmentEntity(com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, com.hypixel.hytale.component.Ref<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> entityRef, List<InspectionLine> lines)