From 80df1cf4b8bbd78be71f5ad058f5504f1063c060 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 27 Jul 2020 09:13:11 -0400 Subject: [PATCH] Fix a missing verb --- 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 d71ead1..131e213 100644 --- a/src/game/creatures/cafat.ts +++ b/src/game/creatures/cafat.ts @@ -31,7 +31,7 @@ class BellyCrushAction extends AttackAction { class BelchAction extends AttackAction { successLine: PairLineArgs = (user, target, args) => new LogLines( new LogLine( - `${user.name.capital} ${user.name.conjugate} on ${target.name.objective} for `, + `${user.name.capital} ${user.name.conjugate(new Verb('belch', 'belches'))} on ${target.name.objective} for `, args.damage.renderShort() ), new ImgElem('./media/cafat/images/belch.webp')