diff options
| author | historia <[not public]> | 2026-07-07 17:04:00 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-07 17:04:00 -0400 |
| commit | bae42946d24bd533cdbc1b271ce14acd752689d0 (patch) | |
| tree | fee984aead607deb7ba14e8736ff2cda942b9642 /internal/admin/static | |
| parent | 726997d799edc388cd448e978d5bb0755aaa551c (diff) | |
| download | thehouseoficarus-bae42946d24bd533cdbc1b271ce14acd752689d0.tar.gz | |
feat: standardize new room names to Room #<id>
Diffstat (limited to 'internal/admin/static')
| -rw-r--r-- | internal/admin/static/map.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/admin/static/map.js b/internal/admin/static/map.js index 9044286..9974b2c 100644 --- a/internal/admin/static/map.js +++ b/internal/admin/static/map.js @@ -2169,7 +2169,7 @@ function dirLabel(d) { // insertRoom calls the admin insert endpoint to push a new room into id's dir // exit, then refreshes the map and selects the new room. The backend fills in -// the default name ("New Room") when none is supplied. +// the default name ("Room #<id>") when none is supplied. function insertRoom(fromID, dir) { API.post('/api/rooms/insert', { from: fromID, dir: dir, name: '' }).then(function(r) { var nid = r && r.room && r.room.id; |
