[LTC] Implement Trap the Trespassers

This commit is contained in:
theelk801 2023-06-19 19:15:48 -04:00
parent 3404a34b2d
commit 2e9eb7fb33
4 changed files with 124 additions and 5 deletions

View file

@ -18,7 +18,7 @@ public abstract class VoteHandler<T> {
protected final Map<UUID, List<T>> playerMap = new HashMap<>();
protected VoteHandlerAI<T> aiVoteHint = null;
private boolean secret = false;
protected boolean secret = false;
public void doVotes(Ability source, Game game) {
doVotes(source, game, null);
@ -189,8 +189,4 @@ public abstract class VoteHandler<T> {
.map(Map.Entry::getKey)
.collect(Collectors.toSet());
}
public void setSecret(boolean secret) {
this.secret = secret;
}
}