DevNatan / inventory-framework

Minecraft Inventory API framework
MIT License
117 stars 21 forks source link

Rename to CONTEXT_CREATE #633

Open github-actions[bot] opened 3 months ago

github-actions[bot] commented 3 months ago

https://github.com/DevNatan/inventory-framework/blob/2d9c92fc72e44cf233a0508a046723c81203c972/inventory-framework-api/src/main/java/me/devnatan/inventoryframework/pipeline/PipelinePhase.java#L51


    }

    enum Context implements PipelinePhase {
        // TODO Rename to CONTEXT_CREATE
        CONTEXT_BEFORE_RENDER,

        /**
         * Called when a context is rendered for the first time.
         * At this phase the pipeline interceptor subject is a {@link IFRenderContext}.
         */
        // TODO Rename to CONTEXT_SETUP
        CONTEXT_RENDER,

        /**