From 90e99f8696b86f1218efa1a5b02846bee28a6bde Mon Sep 17 00:00:00 2001 From: Andrew Zigler Date: Sat, 6 Jun 2020 14:24:55 -0700 Subject: [PATCH] Fix #63 --- src/Room.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Room.js b/src/Room.js index c7232295..19e112fb 100644 --- a/src/Room.js +++ b/src/Room.js @@ -9,7 +9,7 @@ const Logger = require('./Logger'); * @property {Array} defaultItems Default list of item ids that should load in this room * @property {Array} defaultNpcs Default list of npc ids that should load in this room * @property {string} description Room description seen on 'look' - * @property {Array} exits Exits out of this room { id: number, direction: string } + * @property {Array} exits Exits out of this room { roomId: string, direction: string, inferred: boolean } * @property {number} id Area-relative id (vnum) * @property {Set} items Items currently in the room * @property {Set} npcs Npcs currently in the room