From: Carl Worth Date: Mon, 1 Jun 2020 01:04:38 +0000 (-0700) Subject: Drop the meta property from the game exports object. X-Git-Url: https://git.cworth.org/git?p=lmno-server;a=commitdiff_plain;h=bb50292173f978457b4b64d6495db96cd581a4d6 Drop the meta property from the game exports object. The game's Game class is already a property on the exports object, and that Game class already has this meta data. So there's no need to copy it to the exports object as well. Not to mention, no code is actually referencing it from here. --- diff --git a/empires.js b/empires.js index cb7571d..5053b61 100644 --- a/empires.js +++ b/empires.js @@ -351,5 +351,3 @@ Empires.meta = { name: "Empires", identifier: "empires" }; - -exports.meta = Empires.meta; diff --git a/tictactoe.js b/tictactoe.js index aba043c..1f559bd 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -65,5 +65,3 @@ TicTacToe.meta = { name: "Tic Tac Toe", identifier: "tictactoe" }; - -exports.meta = TicTacToe.meta;