Skip to content

milkdrinkers/Enderchester

Repository files navigation

project banner


Enderchester

GitHub License GitHub Release GitHub Actions Workflow Status GitHub Issues GitHub last commit

This plugin is a tiny quality of life addition to Minecraft. It allows players to open their ender chest by holding one in their hand and right-clicking, or right-clicking one in their inventory.


🌟 Features

  • Right-click Enderchest in the player hand to open.
  • Right-click Enderchests in inventories to open.
  • Highly configurable!
  • Permissions support.
  • Supports Minecraft 1.19+ (The plugin is tiny and is unlikely to break due to Minecraft updates)
  • Developer API

example gif


📦 Downloads

GitHub Downloads (all assets, all releases) Spiget Downloads Modrinth Downloads Hangar Downloads

Stable Releases

Stable releases can be downloaded from the platforms linked above.

Pre-Releases

Pre-releases/release-candidates are denoted by having RC in the name. These releases are made ahead of stable releases and should not be considered entirely stable.

Experimental Builds

Experimental builds/snapshots are denoted by having SNAPSHOT in the name and should be considered unstable. These are bleeding edge builds produced from the latest available code. We do not recommend running these in production environments as these builds are unfinished and may contain serious issues.


🤝 Bugs & Feature Requests

If you happen to find any bugs or wish to request a feature, please open an issue on our issue tracker here. We provide bug report and feature request templates, so it is important that you fill out all the necessary information.

Making your issue easy to read and follow will usually result in it being handled faster. Failure to provide the requested information in an issue may result in it being closed.


🚧 API

Javadoc

We provide API for developers accessible through JitPack.

Gradle Kotlin DSL
repositories {
    maven("https://jitpack.io") {
        content {
            includeGroup("io.github.milkdrinkers")
        }
    }
}

dependencies {
    compileOnly("io.github.milkdrinkers:enderchester:VERSION")
}
Maven
<project>
    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>io.github.milkdrinkers</groupId>
            <artifactId>enderchester</artifactId>
            <version>VERSION</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>

🔧 Contributing

Contributions are always welcome! Please make sure to read our Contributor's Guide for standards and our Contributor License Agreement (CLA) before submitting any pull requests.

We also ask that you adhere to our Contributor Code of Conduct to ensure this community remains a place where all feel welcome to participate.


📝 Licensing

You can find the license the source code and all assets are under here. Additionally, contributors agree to the Contributor License Agreement (CLA) found here.


❤️ Acknowledgments

  • Artillex-Studios: For their excellent plugin AxShulkers, which this was inspired by. I highly recommend their plugin providing excellent QoL features for shulkers.