no lang requirement

This commit is contained in:
Joshua-Ashton01
2022-10-25 12:24:43 -06:00
parent 5cfc070592
commit c54299ae90
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ public class Dragonborn implements Race{
private String[] languages; private String[] languages;
private String[] proficiencies; private String[] proficiencies;
public Dragonborn(String chosenLanguage) { public Dragonborn() {
this.languages = new String[] {"Common", "Draconic"}; this.languages = new String[] {"Common", "Draconic"};
this.skills = new String[] {}; this.skills = new String[] {};
+1 -1
View File
@@ -7,7 +7,7 @@ public class dndTestClient {
CharacterStats stats = new CharacterStats(10, 10, 10, 10, 10, 10); CharacterStats stats = new CharacterStats(10, 10, 10, 10, 10, 10);
Human chosenRace = new Human("Goblin"); Dragonborn chosenRace = new Dragonborn();
for(int i = 0; i < chosenRace.getASI().length; i++) { for(int i = 0; i < chosenRace.getASI().length; i++) {