Disable Christmas words for DMT and MB

This commit is contained in:
Sam 2018-01-17 21:14:44 +00:00 committed by Alexander Meech
parent 2a1124b605
commit edca456e42
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ public class Build extends Game
protected String[] _words;
protected String[] _christmasWords;
protected String[] _halloweenWords;
protected boolean _useChristmasWords = true;
protected boolean _useChristmasWords = false;
protected boolean _useHalloweenWords = false;
protected String _word = "?";

View File

@ -96,7 +96,7 @@ public class Draw extends SoloGame
private String[] _words;
private String[] _christmasWords;
private String[] _halloweenWords;
private boolean _useChristmasWords = true;
private boolean _useChristmasWords = false;
private boolean _useHalloweenWords = false;
private HashSet<String> _usedWords = new HashSet<String>();