summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules.ts b/rules.ts
index 74fafd1..41f27b1 100644
--- a/rules.ts
+++ b/rules.ts
@@ -3635,12 +3635,12 @@ states.command = {
// === 4.5 ACTION: SUPPLY (SEARCH) ===
-function can_supply_at(loc: Locale, ships: number) {
- // if theoretically possible to supply (does not check carts or ships)
- if (is_stronghold(loc) && is_friendly_locale(loc)) {
- if (ships > 0 && (is_seaport(loc) || is_exile_box(loc)))
+function can_supply_at(source: Locale, ships: number) {
+ // if theoretically possible to supply from this source (does not check carts or ships)
+ if (is_stronghold(source) && is_friendly_locale(source)) {
+ if (ships > 0 && is_seaport(source))
return true
- if (!has_exhausted_marker(loc))
+ if (!has_exhausted_marker(source))
return true
}
return false