Removed some inappropriate and non-era-accurate bot names

This commit is contained in:
Dan Ginovker
2022-10-03 05:56:20 +00:00
committed by Ryan
parent 4f70c89104
commit 82fa035c69
2 changed files with 3 additions and 150 deletions
@@ -188,8 +188,8 @@ public class AIPlayer extends Player {
public static void loadNames(String fileName){
try {
Scanner sc = new Scanner(new File(ServerConstants.BOT_DATA_PATH + fileName));
while(sc.hasNextLine()){
botNames.add(sc.next());
while (sc.hasNextLine()) {
botNames.add(sc.nextLine());
}
} catch (Exception e){
e.printStackTrace();