Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Avatar for CyntrixAlgorithm

Spawns a chest when the player dies in buildable regions

Report DeathChest?

Dependency

Maven

<repositories>
  <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>

Add the dependency

<dependency>
    <groupId>com.github.DevCyntrix</groupId>
    <artifactId>death-chest</artifactId>
    <version>Tag</version>
</dependency>

Gradle Groovy

repositories {
  maven { url "https://jitpack.io" }
}

Add the dependency

dependencies {
        compileOnly "com.github.DevCyntrix:death-chest:NEWEST-VERSION"
}

Gradle Kotlin

repositories {
    maven("https://jitpack.io")
}

Add the dependency

dependencies {
    compileOnly("com.github.DevCyntrix:death-chest:NEWEST-VERSION")
}