DevNatan / inventory-framework

Minecraft Inventory API framework
MIT License
128 stars 22 forks source link

Rename to CONTEXT_SETUP #634

Open github-actions[bot] opened 9 months ago

github-actions[bot] commented 9 months ago

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


    }

    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,

        /**