From 002165f16c04de11726d9808b4c6567dbb717e17 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 16 Jul 2020 15:42:37 -0400 Subject: [PATCH] Fix missing constructor parameter --- src/game/creatures/cafat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/creatures/cafat.ts b/src/game/creatures/cafat.ts index 0d13bc5..e6c500d 100644 --- a/src/game/creatures/cafat.ts +++ b/src/game/creatures/cafat.ts @@ -82,7 +82,7 @@ class CrushAction extends EatenAction { export class Cafat extends Creature { constructor () { - super(new ProperNoun('Cafat'), [TheyPronouns, FemalePronouns][Math.floor(Math.random() * 2)], { + super(new ProperNoun('Cafat'), new ImproperNoun('taur', 'taurs'), [TheyPronouns, FemalePronouns][Math.floor(Math.random() * 2)], { [Stat.Toughness]: 30, [Stat.Power]: 30, [Stat.Speed]: 15,