diff --git a/info/Unit-types.t b/info/Unit-types.t index dea93477..ab390ef4 100644 --- a/info/Unit-types.t +++ b/info/Unit-types.t @@ -190,7 +190,7 @@ the unit can fire 'general unit flak' (see "info Flak") .L spy the unit is a spy .L train -the unit is a train, and can't be loaded on land units +the unit is a train (see "info Railroad") .L heavy the unit cannot be carried on land units or ships, not even supply ships diff --git a/src/lib/commands/load.c b/src/lib/commands/load.c index e2021034..9095d327 100644 --- a/src/lib/commands/load.c +++ b/src/lib/commands/load.c @@ -912,7 +912,7 @@ load_land_land(struct sctstr *sectp, struct lndstr *lp, int noisy, pr("%s can't be loaded onto itself!\n", prland(&land)); continue; } - if (lchr[(int)land.lnd_type].l_flags & (L_HEAVY | L_TRAIN)) { + if (lchr[(int)land.lnd_type].l_flags & L_HEAVY) { if (noisy) pr("%s is too heavy to load.\n", prland(&land)); continue;