Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Links

Compiling Gods.jar
---------
* Gods must be compiled with Java 8 compliance. Make sure you have a JDK 8 installed.
* Gods must be compiled with Java 17 compliance. Make sure you have a JDK 17 installed.
* Gods has been developed using Eclipse (But any other IDE should work as well)
* Checkout the Gods repo using [git](https://git-scm.com/downloads) in a Command Line: `git clone https://github.com/DogOnFire/Gods.git`
* Open the Gods project folder in Eclipse (or another IDE of choice)
Expand Down
529 changes: 529 additions & 0 deletions lang/english_creatures_nonbinary.yml

Large diffs are not rendered by default.

536 changes: 536 additions & 0 deletions lang/english_evil_nonbinary.yml

Large diffs are not rendered by default.

536 changes: 536 additions & 0 deletions lang/english_evil_nonbinary.yml~

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_frost_nonbinary.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lang/english_general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,9 @@ GodTypes:
CREATURES: $Gender of Mobs
NATURE: $Gender of Nature
GodGender:
None: God
Male: God
Female: Goddess
Nonbinary: God
GodMood:
EXALTED: Exalted
PLEASED: Pleased
Expand Down
533 changes: 533 additions & 0 deletions lang/english_love_nonbinary.yml

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_moon_nonbinary.yml

Large diffs are not rendered by default.

528 changes: 528 additions & 0 deletions lang/english_nature_nonbinary.yml

Large diffs are not rendered by default.

531 changes: 531 additions & 0 deletions lang/english_party_nonbinary.yml

Large diffs are not rendered by default.

528 changes: 528 additions & 0 deletions lang/english_sea_nonbinary.yml

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_sun_nonbinary.yml

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_thunder_nonbinary.yml

Large diffs are not rendered by default.

494 changes: 494 additions & 0 deletions lang/english_war_nonbinary.yml

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_werewolves_nonbinary.yml

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions lang/english_wisdom_nonbinary.yml

Large diffs are not rendered by default.

99 changes: 48 additions & 51 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@
<groupId>com.dogonfire</groupId>
<artifactId>gods</artifactId>
<name>Gods</name>
<version>0.9.1</version>
<version>1.0.0</version>
<description>Gods in Minecraft!</description>
<url>https://github.com/DogOnFire/Gods</url>
<url>https://github.com/CCNetMC/Gods</url>
<packaging>jar</packaging>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<jdk.version>16</jdk.version>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<jdk.version>17</jdk.version>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.jupiter.version>5.5.0-M1</junit.jupiter.version>
<sonar.sources>${project.basedir}/src/com/</sonar.sources>
Expand All @@ -33,8 +32,8 @@
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>elmakers-repo</id>
Expand All @@ -43,31 +42,29 @@
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
</repositories>
<dependencies>
</repository> </repositories>
<dependencies>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.1-SNAPSHOT</version>
<scope>provided</scope>
<version>7.0.9</version>
</dependency>
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.17.1-R0.1-SNAPSHOT</version>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.10</version>
<version>2.11.5</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -104,37 +101,37 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
</plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
<version>2.22.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.1</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion src/com/dogonfire/gods/Gods.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,4 @@ public void sendInfo(UUID playerId, LanguageManager.LANGUAGESTRING message, Chat

getServer().getScheduler().runTaskLater(this, new TaskInfo(color, playerId, message, name1, name2), delay);
}
}
}
Loading