From 43c57bc73d491f9f2cb026217d3940444a72f862 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 6 Oct 2023 15:31:51 +0200 Subject: Remove duplicate get_supply_from_source. --- rules.js | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/rules.js b/rules.js index f3e8800..164cf02 100644 --- a/rules.js +++ b/rules.js @@ -4100,34 +4100,6 @@ function get_supply_from_source(source) { return prov } -function get_supply_from_source(source) { - let prov = 0 - - if (has_exhausted_marker(source)) { - return prov - } - - if ( - game.command === LORD_DEVON && - (game.where === LOC_EXETER || - game.where === LOC_LAUNCESTON || - game.where === LOC_PLYMOUTH || - game.where === LOC_WELLS || - game.where === LOC_ROCHESTER) - ) { - prov += 1 - } - - if (source === LOC_LONDON || source === LOC_CALAIS) { - prov += 3 - } else if (is_city(source)) { - prov += 2 - } - - prov += 1 - return prov -} - states.supply_source = { inactive: "Supply", prompt() { -- cgit v1.2.3