]> git.cworth.org Git - empires-server/blobdiff - game.js
Drop the name field from the Game class
[empires-server] / game.js
diff --git a/game.js b/game.js
index 5bbd7f503885a964105a90266f5e36d8cd981210..fb2d75afa87214f1eaa4fe426772ca59f39e24f3 100644 (file)
--- a/game.js
+++ b/game.js
@@ -1,7 +1,6 @@
 /* Base class providing common code for game engine implementations. */
 class Game {
-  constructor(name) {
-    this.name = name;
+  constructor() {
     this.clients = [];
     this.next_client_id = 1;
   }