X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=game.js;h=ca12fb3e6d302470f5cb1ce946907f3361c50474;hb=731c54ef14f2fdc852961c7c2429117d4e7472d6;hp=faef43798b79482e4f2e0cdc1656ec66718601c9;hpb=143c01e643c36e87c6bfc377ad1cf4edcc79e62c;p=empires-server diff --git a/game.js b/game.js index faef437..ca12fb3 100644 --- a/game.js +++ b/game.js @@ -4,6 +4,9 @@ class Game { this.id = id; this.clients = []; this.next_client_id = 1; + + /* Send a comment to every connected client every 15 seconds. */ + setInterval(() => {this.broadcast_string(":");}, 15000); } /* Suport for game meta-data. @@ -78,6 +81,10 @@ class Game { } } + broadcast_move(move) { + this.broadcast_event("move", move); + } + } module.exports = Game;