X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=game.js;h=fb2d75afa87214f1eaa4fe426772ca59f39e24f3;hb=7b21a4eb7ed2d6d479842b01c35ba6931c3acdc7;hp=5bbd7f503885a964105a90266f5e36d8cd981210;hpb=40abb70f85a1f833c6dfcc8541db3bf876096616;p=lmno-server diff --git a/game.js b/game.js index 5bbd7f5..fb2d75a 100644 --- 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; }