Implement loot system

This commit is contained in:
dfsek
2020-10-09 16:30:34 -07:00
parent 9a54f364be
commit 2b460f8617
14 changed files with 151 additions and 61 deletions

11
pom.xml
View File

@@ -25,10 +25,6 @@
<version>3.2.4</version>
<configuration>
<relocations>
<relocation>
<pattern>org.polydev.gaea</pattern>
<shadedPattern>com.dfsek.terra.lib.gaea</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons</pattern>
<shadedPattern>com.dfsek.terra.lib.commons</shadedPattern>
@@ -96,6 +92,7 @@
<groupId>org.polydev</groupId>
<artifactId>gaea</artifactId>
<version>1.10.93</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
@@ -120,6 +117,12 @@
<version>1.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>