From 7cddbf3b0681beb8f9c8ef1f3e147f0531619a74 Mon Sep 17 00:00:00 2001 From: Govindas Date: Mon, 13 Jan 2020 12:37:12 +0200 Subject: [PATCH] 1.15 support --- .idea/$PRODUCT_WORKSPACE_FILE$ | 19 ++ .idea/artifacts/SkStuff_jar.xml | 10 + .idea/dictionaries/Govindas.xml | 7 + .idea/discord.xml | 9 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/uiDesigner.xml | 124 +++++++++++ .idea/workspace.xml | 75 +++++++ META-INF/MANIFEST.MF | 2 + README.md | 68 +----- SkStuff.iml | 200 ++++++++++++++++++ bin/.gitignore | 2 - bin/META-INF/MANIFEST.MF | 3 + bin/META-INF/SkStuff.kotlin_module | Bin 0 -> 16 bytes bin/me/TheBukor/SkStuff/SkStuff$1.class | Bin 0 -> 1158 bytes bin/me/TheBukor/SkStuff/SkStuff.class | Bin 0 -> 12710 bytes .../SkStuff/effects/EffClearPathGoals.class | Bin 0 -> 2447 bytes .../SkStuff/effects/EffGZipFile.class | Bin 0 -> 2561 bytes .../SkStuff/effects/EffMakeJump.class | Bin 0 -> 3520 bytes .../SkStuff/effects/EffRemovePathGoal.class | Bin 0 -> 7999 bytes .../SkStuff/effects/EffResourceSound.class | Bin 0 -> 3352 bytes .../SkStuff/effects/EffSetPathGoal.class | Bin 0 -> 24737 bytes .../SkStuff/effects/EffShowEntityEffect.class | Bin 0 -> 2689 bytes .../expressions/ExprClickedInventory.class | Bin 0 -> 2605 bytes .../SkStuff/expressions/ExprFireProof.class | Bin 0 -> 4200 bytes .../SkStuff/expressions/ExprGlideState.class | Bin 0 -> 3842 bytes .../expressions/ExprInventoryOwner.class | Bin 0 -> 3258 bytes .../SkStuff/expressions/ExprNoClip.class | Bin 0 -> 4211 bytes .../expressions/ExprNoGravityState.class | Bin 0 -> 4226 bytes .../expressions/ExprTimespanToNumber.class | Bin 0 -> 3482 bytes .../SkStuff/expressions/ExprToLowerCase.class | Bin 0 -> 2502 bytes .../SkStuff/expressions/ExprToUpperCase.class | Bin 0 -> 2502 bytes .../expressions/ExprWordsToUpperCase.class | Bin 0 -> 3029 bytes .../PathfinderGoalFollow_v1_13_R2.class | Bin 0 -> 3039 bytes .../PathfinderGoalFollow_v1_14_R1.class | Bin 0 -> 3039 bytes .../TheBukor/SkStuff/util/NMSInterface.class | Bin 0 -> 660 bytes .../TheBukor/SkStuff/util/NMS_v1_13_R2.class | Bin 0 -> 4295 bytes .../TheBukor/SkStuff/util/NMS_v1_14_R1.class | Bin 0 -> 4295 bytes .../TheBukor/SkStuff/util/NMS_v1_15_R1.class | Bin 0 -> 4295 bytes .../SkStuff/util/ReflectionUtils.class | Bin 0 -> 4351 bytes bin/org/mcstats/Metrics$1.class | Bin 0 -> 2222 bytes bin/org/mcstats/Metrics$Graph.class | Bin 0 -> 1931 bytes bin/org/mcstats/Metrics$Plotter.class | Bin 0 -> 1104 bytes bin/org/mcstats/Metrics.class | Bin 0 -> 14714 bytes out/artifacts/SkStuff_jar/SkStuff.jar | Bin 0 -> 105724 bytes plugin.yml | 2 +- src/me/TheBukor/SkStuff/SkStuff.java | 72 +++---- .../TheBukor/SkStuff/util/NMSInterface.java | 6 - .../TheBukor/SkStuff/util/NMS_v1_15_R1.java | 112 ++++++++++ 49 files changed, 611 insertions(+), 114 deletions(-) create mode 100644 .idea/$PRODUCT_WORKSPACE_FILE$ create mode 100644 .idea/artifacts/SkStuff_jar.xml create mode 100644 .idea/dictionaries/Govindas.xml create mode 100644 .idea/discord.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/workspace.xml create mode 100644 META-INF/MANIFEST.MF create mode 100644 SkStuff.iml delete mode 100644 bin/.gitignore create mode 100644 bin/META-INF/MANIFEST.MF create mode 100644 bin/META-INF/SkStuff.kotlin_module create mode 100644 bin/me/TheBukor/SkStuff/SkStuff$1.class create mode 100644 bin/me/TheBukor/SkStuff/SkStuff.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffClearPathGoals.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffGZipFile.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffMakeJump.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffRemovePathGoal.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffResourceSound.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffSetPathGoal.class create mode 100644 bin/me/TheBukor/SkStuff/effects/EffShowEntityEffect.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprClickedInventory.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprFireProof.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprGlideState.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprInventoryOwner.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprNoClip.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprNoGravityState.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprTimespanToNumber.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprToLowerCase.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprToUpperCase.class create mode 100644 bin/me/TheBukor/SkStuff/expressions/ExprWordsToUpperCase.class create mode 100644 bin/me/TheBukor/SkStuff/pathfinders/PathfinderGoalFollow_v1_13_R2.class create mode 100644 bin/me/TheBukor/SkStuff/pathfinders/PathfinderGoalFollow_v1_14_R1.class create mode 100644 bin/me/TheBukor/SkStuff/util/NMSInterface.class create mode 100644 bin/me/TheBukor/SkStuff/util/NMS_v1_13_R2.class create mode 100644 bin/me/TheBukor/SkStuff/util/NMS_v1_14_R1.class create mode 100644 bin/me/TheBukor/SkStuff/util/NMS_v1_15_R1.class create mode 100644 bin/me/TheBukor/SkStuff/util/ReflectionUtils.class create mode 100644 bin/org/mcstats/Metrics$1.class create mode 100644 bin/org/mcstats/Metrics$Graph.class create mode 100644 bin/org/mcstats/Metrics$Plotter.class create mode 100644 bin/org/mcstats/Metrics.class create mode 100644 out/artifacts/SkStuff_jar/SkStuff.jar create mode 100644 src/me/TheBukor/SkStuff/util/NMS_v1_15_R1.java diff --git a/.idea/$PRODUCT_WORKSPACE_FILE$ b/.idea/$PRODUCT_WORKSPACE_FILE$ new file mode 100644 index 0000000..3733e0d --- /dev/null +++ b/.idea/$PRODUCT_WORKSPACE_FILE$ @@ -0,0 +1,19 @@ + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/artifacts/SkStuff_jar.xml b/.idea/artifacts/SkStuff_jar.xml new file mode 100644 index 0000000..6eff031 --- /dev/null +++ b/.idea/artifacts/SkStuff_jar.xml @@ -0,0 +1,10 @@ + + + $PROJECT_DIR$/out/artifacts/SkStuff_jar + + + + + + + \ No newline at end of file diff --git a/.idea/dictionaries/Govindas.xml b/.idea/dictionaries/Govindas.xml new file mode 100644 index 0000000..e0070ef --- /dev/null +++ b/.idea/dictionaries/Govindas.xml @@ -0,0 +1,7 @@ + + + + elytra + + + \ No newline at end of file diff --git a/.idea/discord.xml b/.idea/discord.xml new file mode 100644 index 0000000..59b11d1 --- /dev/null +++ b/.idea/discord.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..e208459 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..a1beb97 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e9f575c --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + +