Skip to content

Commit

Permalink
4.3.58
Browse files Browse the repository at this point in the history
  • Loading branch information
ZombieStriker committed Mar 7, 2020
1 parent a8cae33 commit 36b62d0
Show file tree
Hide file tree
Showing 8 changed files with 502 additions and 380 deletions.
59 changes: 35 additions & 24 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.zombie_striker</groupId>
<artifactId>mcMMOHorses</artifactId>
<version>4.3.57</version>
<version>4.3.58</version>
<repositories>

<repository>
Expand Down Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.14.2-R0.1-SNAPSHOT</version>
<version>1.15-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Vault API -->
Expand Down Expand Up @@ -107,6 +107,14 @@
<target>1.7</target>
</configuration>
</plugin>
</plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
5 changes: 5 additions & 0 deletions resources/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 4.3.58
Updated to 1.15.
[Optional] Added option to enable invincible horses if the owner is not riding them.
[Optional] Added ability to summon horses using saddles.

Version 4.3.57
Fixed max health
Fixed saving horse health amount
Expand Down
6 changes: 6 additions & 0 deletions resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ death-timer: 120
# (A horse can't be summoned for this time after being banished)
banish-timer: 120

#If enabled, horses are invincible when the owner is not riding them
invincible-freerange-horses: false

#If enabled, removing the saddle from claimed horses will banish them.
saddle-linked-horses: false

# Horse sprint cooldown (in seconds)
sprint-cooldown: 20

Expand Down
Loading

0 comments on commit 36b62d0

Please sign in to comment.