Siebenmeilentee + anschwimmen = ins Landesinnere vordringen, abgestellt.

This commit is contained in:
Enno Rehling 2005-06-01 21:10:57 +00:00
parent f91aadc1be
commit 98f69670ab
1 changed files with 2 additions and 2 deletions

View File

@ -924,7 +924,7 @@ transport(unit * ut, unit * u)
{
order * ord;
if (LongHunger(u) || ut->region==T_OCEAN) {
if (LongHunger(u) || ut->region->terrain==T_OCEAN) {
return false;
}
@ -1170,7 +1170,7 @@ movement_speed(unit * u)
if (fspecial(u->faction, FS_QUICK)) mp = BP_RIDING;
/* Siebenmeilentee */
if (get_effect(u, oldpotiontype[P_FAST]) >= u->number) {
if (u->region->terrain!=T_OCEAN && get_effect(u, oldpotiontype[P_FAST]) >= u->number) {
mp *= 2;
change_effect(u, oldpotiontype[P_FAST], -u->number);
}