diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-08-19 23:43:29 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-08-19 23:43:29 -0600 |
commit | 041fffa5122d0049f6aa8da6769107d9f937cd39 (patch) | |
tree | 14d6a717837f2b44c3f0d1c83bb370540cb33ce3 | |
parent | e2eac7a28e0a10f473ba8e756b0e4858e46e27fd (diff) | |
download | resurrection-041fffa5122d0049f6aa8da6769107d9f937cd39.tar resurrection-041fffa5122d0049f6aa8da6769107d9f937cd39.tar.gz resurrection-041fffa5122d0049f6aa8da6769107d9f937cd39.tar.bz2 |
well that magically fixed itself
-rw-r--r-- | TODO.md | 9 | ||||
-rw-r--r-- | data/settings.resurrection | 3 | ||||
-rw-r--r-- | out/artifacts/Resurrection_jar/Resurrection.jar | bin | 1598168 -> 1598115 bytes | |||
-rw-r--r-- | src/net/brysonsteck/Resurrection/Resurrection.java | 2 |
4 files changed, 11 insertions, 3 deletions
@@ -3,13 +3,22 @@ ### Find compatibility with other versions * 1.8 + * Enables but crashes when trying to play ender dragon noise on resurrection (end came out in 1.9) * 1.9 + * Doesn't enable, compiled by more recent version of java * 1.10 + * same as 1.9 * 1.11 + * same as 1.9 * 1.12 + * same as 1.9 * 1.13 + * seems to work * 1.14 + * seems to work * 1.15 + * seems to work * 1.16 * Works, native version * 1.17 + * seems to work diff --git a/data/settings.resurrection b/data/settings.resurrection index 2d12681..4105244 100644 --- a/data/settings.resurrection +++ b/data/settings.resurrection @@ -2,5 +2,4 @@ # 'resurrection_time' is the amount of time in milliseconds Resurrection will force the player to wait. Default value is 8640000 milliseconds (24 hours). resurrection_time=86400000 # 'debug' enables debug messages in the console and players' chat as the plugin runs. The only valid values are 'true' and 'false'. Default value is false. -debug=false -# 'death_time_format' changes the way the remaining time is formatted to show players who just died.
\ No newline at end of file +debug=false
\ No newline at end of file diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar Binary files differindex 9dfdeb8..bf8e2aa 100644 --- a/out/artifacts/Resurrection_jar/Resurrection.jar +++ b/out/artifacts/Resurrection_jar/Resurrection.jar diff --git a/src/net/brysonsteck/Resurrection/Resurrection.java b/src/net/brysonsteck/Resurrection/Resurrection.java index 0003f1e..48ef593 100644 --- a/src/net/brysonsteck/Resurrection/Resurrection.java +++ b/src/net/brysonsteck/Resurrection/Resurrection.java @@ -151,7 +151,7 @@ public class Resurrection extends JavaPlugin implements Listener { // TimeCheck timeCheck = new TimeCheck((System.currentTimeMillis() + 86212345) - System.currentTimeMillis()); // System.out.println(timeCheck.formatTime()); - System.out.println(System.currentTimeMillis()); +// System.out.println(System.currentTimeMillis()); } } |