no lang requirement
This commit is contained in:
@@ -8,7 +8,7 @@ public class Dragonborn implements Race{
|
||||
private String[] languages;
|
||||
private String[] proficiencies;
|
||||
|
||||
public Dragonborn(String chosenLanguage) {
|
||||
public Dragonborn() {
|
||||
|
||||
this.languages = new String[] {"Common", "Draconic"};
|
||||
this.skills = new String[] {};
|
||||
|
||||
@@ -7,7 +7,7 @@ public class dndTestClient {
|
||||
|
||||
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++) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user