]> git.cworth.org Git - empires-server/blobdiff - lmno.js
Add some autofocus attributes to several forms
[empires-server] / lmno.js
diff --git a/lmno.js b/lmno.js
index b971bcb6332e4292fa8848b3325461307ac4b18c..54baea91f8d5688a74071fa45d19a12cd13ae091 100644 (file)
--- a/lmno.js
+++ b/lmno.js
@@ -163,6 +163,13 @@ LMNO.letters = "CCDDDGGGHHJKLLLLMMMMPPPPQRRRSSSTTTVVWWYYZ";
 
 const lmno = new LMNO();
 
+/* Pre-allocate an empires game with ID QRST.
+ * This is for convenience in the development of the flempires
+ * client which would like to have stable API endpoints across
+ * server restarts.
+ */
+lmno.create_game_with_id("empires", "QRST");
+
 /* Force a game ID into a canonical form as described above. */
 function lmno_canonize(id) {
   /* Capitalize */
@@ -295,7 +302,7 @@ app.post('/login', async (request, response) => {
   return;
 });
 
-/* API to set uer profile information */
+/* API to set user profile information */
 app.put('/profile', (request, response) => {
   const nickname = request.body.nickname;
   if (nickname) {