Skip to content

Commit 54a573a

Browse files
committed
Update version number to 6.18.6
1 parent 5432b2a commit 54a573a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
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.6-SNAPSHOT</version>
7+
<version>6.18.6</version>
88
<packaging>jar</packaging>
99
<name>VotingPlugin</name>
1010
<properties>
@@ -267,7 +267,7 @@
267267
<dependency>
268268
<groupId>com.bencodez</groupId>
269269
<artifactId>advancedcore</artifactId>
270-
<version>3.7.17-SNAPSHOT</version>
270+
<version>3.7.17</version>
271271
<scope>compile</scope>
272272
</dependency>
273273
<dependency>

VotingPlugin/src/main/java/com/bencodez/votingplugin/listeners/VotiferEvent.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,11 @@ public void run() {
7272
plugin.getServerData().addServiceSite(voteSite);
7373
if (plugin.getBungeeSettings().isUseBungeecoord() && !plugin.getBungeeSettings().isVotifierBypass()
7474
&& (plugin.getBungeeHandler().getMethod().equals(BungeeMethod.PLUGINMESSAGING)
75-
|| plugin.getBungeeHandler().getMethod().equals(BungeeMethod.SOCKETS))) {
75+
|| plugin.getBungeeHandler().getMethod().equals(BungeeMethod.SOCKETS)
76+
|| plugin.getBungeeHandler().getMethod().equals(BungeeMethod.MQTT)
77+
|| plugin.getBungeeHandler().getMethod().equals(BungeeMethod.REDIS))) {
7678
plugin.getLogger().severe(
77-
"Ignoring vote from votifier since pluginmessaging or socket bungee method is enabled, this means you aren't setup correctly for those methods, please check: https://github.com/BenCodez/VotingPlugin/wiki/Bungeecord-Setups");
79+
"Ignoring vote from votifier since pluginmessaging, socket, redis, or mqtt bungee method is enabled, this means you aren't setup correctly for those methods, please check: https://github.com/BenCodez/VotingPlugin/wiki/Bungeecord-Setups");
7880
return;
7981
}
8082
String matchSite = "";

0 commit comments

Comments
 (0)