| @@ -549,8 +549,10 @@ var macro = | |||||
| get description() { | get description() { | ||||
| result = []; | |||||
| line = "You are " + (macro.name == "" ? "" : macro.name + ", ") + "a " + length(macro.height, unit, true) + " tall " + macro.species + ". You weigh " + mass(macro.mass, unit) + "."; | |||||
| var result = []; | |||||
| var line = "You are " + (macro.name == "" ? "" : macro.name + ", ") + "a " + length(macro.height, unit, true) + " tall " + macro.species + ". You weigh " + mass(macro.mass, unit) + "."; | |||||
| result.push(line); | result.push(line); | ||||
| if (this.hasTail) { | if (this.hasTail) { | ||||
| @@ -597,13 +599,13 @@ var macro = | |||||
| result.push(line); | result.push(line); | ||||
| } | } | ||||
| if (this.hasPouch) { | if (this.hasPouch) { | ||||
| if (this.pouch.container.count == 0) | |||||
| result.push("Your belly pouch is flat and empty."); | |||||
| else | |||||
| result.push("Your belly pouch is bulging, holding " + this.pouch.container.describe(false) + "."); | |||||
| line = this.pouch.description; | |||||
| result.push(line); | |||||
| } | } | ||||
| return result; | return result; | ||||
| }, | }, | ||||