From bb50292173f978457b4b64d6495db96cd581a4d6 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 31 May 2020 18:04:38 -0700 Subject: [PATCH] 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. --- empires.js | 2 -- tictactoe.js | 2 -- 2 files changed, 4 deletions(-) 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; -- 2.43.0