From e6891c2ac00f8f89e5a3dae4e3e623cadb448fe0 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 11 Jan 2020 13:14:43 -0500 Subject: [PATCH] Describe planets as celestial objects --- recursive-macro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recursive-macro.js b/recursive-macro.js index 7aff03f..8c2b960 100644 --- a/recursive-macro.js +++ b/recursive-macro.js @@ -1542,7 +1542,7 @@ function Planet(count = 1) { this.contents = initContents(this.name,this.count); this.describe = function(verbose=true) { - return defaultDescribe(verbose, this, "community"); + return defaultDescribe(verbose, this, "celestial"); } }