From c0d38bd3c2047c4e67cd7f930aa3ac3683915418 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:18:18 +0200 Subject: remove unused --- rules.js | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/rules.js b/rules.js index 0d9967b..17029de 100644 --- a/rules.js +++ b/rules.js @@ -211,26 +211,6 @@ function clear_unit_dispersed(u) { game.units[u] &= ~UNIT_DISPERSED_MASK } -// moved - -function is_unit_moved(u) { - return set_has(game.moved, u) -} - -function set_unit_moved(u) { - set_add(game.moved, u) -} - -// fired - -function is_unit_fired(u) { - return set_has(game.fired, u) -} - -function set_unit_fired(u) { - set_add(game.fired, u) -} - function eliminate_unit(u) { game.units[u] = 0 set_unit_loc(u, ELIMINATED) @@ -423,8 +403,6 @@ exports.setup = function (seed, scenario, options) { naval: 0, units: new Array(unit_count).fill(0), - moved: [], - fired: [], is_morocco_tunisia_independent: false, border_zone: 0, @@ -857,10 +835,6 @@ function log_sep() { // === COMMON LIBRARY === -function log(msg) { - game.log.push(msg) -} - function clear_undo() { game.undo.length = 0 } -- cgit v1.2.3