From 2353ec321c2652901d5b99895583e05f818867bf Mon Sep 17 00:00:00 2001 From: BenCodez Date: Sun, 11 Aug 2024 13:08:36 -0400 Subject: [PATCH] Remove treatvanishasoffline to be enabled for voteparty reminder --- .../src/com/bencodez/votingplugin/voteparty/VoteParty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VotingPlugin/src/com/bencodez/votingplugin/voteparty/VoteParty.java b/VotingPlugin/src/com/bencodez/votingplugin/voteparty/VoteParty.java index 511dfd25e..7f510a05a 100644 --- a/VotingPlugin/src/com/bencodez/votingplugin/voteparty/VoteParty.java +++ b/VotingPlugin/src/com/bencodez/votingplugin/voteparty/VoteParty.java @@ -346,7 +346,7 @@ public void setVotedUsers(ArrayList value) { } public void checkVoteReminder(VotingPluginUser user) { - if (!user.isVanished() || !plugin.getOptions().isTreatVanishAsOffline()) { + if (!user.isVanished()) { int neededVotes = getNeededVotes(); for (String str : plugin.getSpecialRewardsConfig().getVotePartyVoteReminderAtVotes()) {