aboutsummaryrefslogtreecommitdiff
path: root/internal/admin/static
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-07 17:04:00 -0400
committerhistoria <[not public]>2026-07-07 17:04:00 -0400
commitbae42946d24bd533cdbc1b271ce14acd752689d0 (patch)
treefee984aead607deb7ba14e8736ff2cda942b9642 /internal/admin/static
parent726997d799edc388cd448e978d5bb0755aaa551c (diff)
downloadthehouseoficarus-bae42946d24bd533cdbc1b271ce14acd752689d0.tar.gz
feat: standardize new room names to Room #<id>
Diffstat (limited to 'internal/admin/static')
-rw-r--r--internal/admin/static/map.js2
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;