From ac921308ffeacceb858560112f92367960088672 Mon Sep 17 00:00:00 2001 From: Mark Wolfman Date: Fri, 1 May 2020 10:43:32 -0500 Subject: [PATCH] Added humans backl into the list of races. Fixes issue: https://github.com/canismarko/dungeon-sheets/issues/49 --- dungeonsheets/race.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dungeonsheets/race.py b/dungeonsheets/race.py index fa799f3..21e2364 100644 --- a/dungeonsheets/race.py +++ b/dungeonsheets/race.py @@ -138,7 +138,7 @@ class StoutHalfling(_Halfling): # Humans -class _Human(Race): +class Human(Race): name = "Human" size = "medium" speed = 30 @@ -151,7 +151,7 @@ class _Human(Race): languages = ("Common", '[choose one]') -class Rashemi(_Human): +class Rashemi(Human): name = 'Rashemi' @@ -505,7 +505,7 @@ class Goblin(Race): PHB_races = [HillDwarf, MountainDwarf, HighElf, WoodElf, DarkElf, LightfootHalfling, StoutHalfling, Rashemi, Dragonborn, - ForestGnome, RockGnome, HalfElf, HalfOrc, Tiefling] + ForestGnome, RockGnome, HalfElf, HalfOrc, Tiefling, Human] VOLO_races = [ProtectorAasimar, ScourgeAasimar, FallenAasimar, Firbolg, Goliath, Lizardfolk, Kenku, Tabaxi, Triton]