Skip to content

Commit a951aae

Browse files
committed
Update version number to 6.18.1
1 parent 826fc95 commit a951aae

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

VotingPlugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.bencodez</groupId>
66
<artifactId>votingplugin</artifactId>
7-
<version>6.18.1-SNAPSHOT</version>
7+
<version>6.18.1</version>
88
<packaging>jar</packaging>
99
<name>VotingPlugin</name>
1010
<properties>
@@ -257,7 +257,7 @@
257257
<dependency>
258258
<groupId>com.bencodez</groupId>
259259
<artifactId>advancedcore</artifactId>
260-
<version>3.7.13-SNAPSHOT</version>
260+
<version>3.7.13</version>
261261
<scope>compile</scope>
262262
</dependency>
263263
</dependencies>

VotingPlugin/src/com/bencodez/votingplugin/BungeeHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,8 +549,6 @@ public void run() {
549549
if (plugin.getBungeeSettings().isPluginMessageEncryption()) {
550550
encryptionHandler = new EncryptionHandler(new File(plugin.getDataFolder(), "secretkey.key"));
551551
plugin.getPluginMessaging().setEncryptionHandler(encryptionHandler);
552-
} else {
553-
plugin.getLogger().warning("PluginMessageEncryption is disabled, this is not recommended, please enable to prevent possible exploits");
554552
}
555553

556554
bungeeVotePartyCurrent = plugin.getServerData().getBungeeVotePartyCurrent();

VotingPlugin/src/com/bencodez/votingplugin/bungee/proxy/VotingPluginProxy.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -483,10 +483,7 @@ public void load() {
483483
if (method.equals(BungeeMethod.PLUGINMESSAGING)) {
484484
if (getConfig().getPluginMessageEncryption()) {
485485
encryptionHandler = new EncryptionHandler(new File(getDataFolderPlugin(), "secretkey.key"));
486-
} else {
487-
logSevere(
488-
"Plugin message encryption disabled, please enable to prevent exploits: https://github.com/BenCodez/VotingPlugin/wiki/Bungee-Setup-PLUGINMESSAGING#prevent-exploits-recommended-if-possible");
489-
}
486+
}
490487
} else if (method.equals(BungeeMethod.SOCKETS)) {
491488
encryptionHandler = new EncryptionHandler(new File(getDataFolderPlugin(), "secretkey.key"));
492489

0 commit comments

Comments
 (0)