Skip to content

Commit ee6f8d5

Browse files
WeiiswurstDevBuildTools
authored andcommitted
AdminTools version 3.1.1!
- Updated some dependencies to the newest version - Cleaned up some code - Added the config option to not display any message to the target player (useful for Invsee and other modules to survey players) Signed-off-by: BuildTools <Arved>
1 parent 9b2663f commit ee6f8d5

File tree

15 files changed

+40
-34
lines changed

15 files changed

+40
-34
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/discord.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/AdminTools.main.iml

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/AdminTools.test.iml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AdminTools.iml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="AdminTools" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="dev.wwst" external.system.module.version="3.0.0" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="AdminTools" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="dev.wwst" external.system.module.version="3.1.0" type="JAVA_MODULE" version="4">
33
<component name="NewModuleRootManager" inherit-compiler-output="true">
44
<exclude-output />
55
<content url="file://$MODULE_DIR$">
66
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
77
<excludeFolder url="file://$MODULE_DIR$/build" />
88
</content>
9+
<orderEntry type="inheritedJdk" />
910
<orderEntry type="sourceFolder" forTests="false" />
1011
</component>
1112
</module>

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ repositories {
2020

2121
dependencies {
2222
compileOnly 'org.bukkit:bukkit:1.13.2-R0.1-SNAPSHOT'
23-
implementation('io.papermc:paperlib:1.0.2')
24-
compileOnly 'com.comphenix.protocol:ProtocolLib:4.5.0'
25-
compileOnly "com.github.MilkBowl:VaultAPI:1.7"
26-
compileOnly 'me.clip:placeholderapi:2.10.5'
23+
implementation 'io.papermc:paperlib:1.0.3'
24+
compileOnly 'com.comphenix.protocol:ProtocolLib:4.5.1'
25+
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
26+
compileOnly 'me.clip:placeholderapi:2.10.6'
2727
}
2828

2929
shadowJar {
157 KB
Binary file not shown.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pluginGroup=dev.wwst
2-
pluginVersion=3.1.0
2+
pluginVersion=3.1.1

src/main/java/dev/wwst/admintools3/AdminTools3.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
public final class AdminTools3 extends JavaPlugin {
1919

2020
private static AdminTools3 INSTANCE;
21-
private final String configurationFolderPath = "plugins//AdminTools3";
2221

2322
public static final String PLUGIN_NAME = "Admintools3";
2423

@@ -92,7 +91,7 @@ public static AdminTools3 getInstance() {
9291
}
9392

9493
public String getConfigFolderPath() {
95-
return configurationFolderPath;
94+
return "plugins//AdminTools3";
9695
}
9796

9897
public void addDataStorage(PlayerDataStorage pds) {

0 commit comments

Comments
 (0)