vote_mute #2
|
|
@ -197,7 +197,7 @@ public class VoteToMuteHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String vote = commandContext.getArgument("yesno", String.class);
|
String vote = commandContext.getArgument("yesNo", String.class);
|
||||||
switch (vote.toLowerCase()) {
|
switch (vote.toLowerCase()) {
|
||||||
case "yes" -> activeVoteToMute.vote(source.getUniqueId(), true);
|
case "yes" -> activeVoteToMute.vote(source.getUniqueId(), true);
|
||||||
case "no" -> activeVoteToMute.vote(source.getUniqueId(), false);
|
case "no" -> activeVoteToMute.vote(source.getUniqueId(), false);
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@ public class ActiveVoteToMute {
|
||||||
|
|
||||||
public boolean votePassed() {
|
public boolean votePassed() {
|
||||||
double totalVotes = (votedFor.size() + votedAgainst.size());
|
double totalVotes = (votedFor.size() + votedAgainst.size());
|
||||||
if (totalVotes == 0) {
|
if (totalVotes == 0 || votedFor.isEmpty()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (totalVotes / totalEligibleVoters < 0.6) {
|
if (totalVotes / totalEligibleVoters < 0.6) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user