From a0855acbbde16e1636c3aef59bb4f2067cfe7b73 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 1 Mar 2018 08:29:29 -0500 Subject: [PATCH] verb0se instead of verbose, somehow --- recursive-desc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recursive-desc.js b/recursive-desc.js index 52e8db8..f1b27b7 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -419,7 +419,7 @@ function defaultSoulAbsorbPaw(container, macro, verbose) { if (container.count == 0) return "Your " + macro.footDesc() + " thumps against the ground"; else if (sum == 0) - return "Your " + macro.footDesc() + " slams down on " + container.describe(verb0se) + "...but there aren't any souls within!"; + return "Your " + macro.footDesc() + " slams down on " + container.describe(verbose) + "...but there aren't any souls within!"; else return "Your " + macro.footDesc() + " slams down on " + container.describe(verbose) + ", smashing them to pieces and absorbing " + sum + (sum == 1 ? " soul" : " souls") + " into your pads."; }