= Cleaning up edge cases

This commit is contained in:
Matthew Cech
2019-04-13 12:34:35 -07:00
parent 330e0c2e08
commit 0912034c2f
9 changed files with 30 additions and 10 deletions
+2 -1
View File
@@ -17,7 +17,7 @@ public class CommandPollVote extends Command
{
if(guild.hasVoted.contains(user.uniqueID))
{
res.Call(Localizer.Stub("You already voted"));
res.Call(Localizer.Stub("You already voted!"));
return;
}
try
@@ -41,6 +41,7 @@ public class CommandPollVote extends Command
return;
}
}
res.Call(Localizer.Stub("There is no poll running!"));
}
}