(svn r8528) -Codechange: Rename IsBuoy_() to IsBuoy() now that the naming conflict no longer exists.

This commit is contained in:
celestar
2007-02-02 07:48:06 +00:00
parent ae3982dbec
commit 90528dc78e
4 changed files with 6 additions and 6 deletions

View File

@@ -352,7 +352,7 @@ static bool IsWateredTile(TileIndex tile)
return false;
}
case MP_STATION: return IsOilRig(tile) || IsDock(tile) || IsBuoy_(tile);
case MP_STATION: return IsOilRig(tile) || IsDock(tile) || IsBuoy(tile);
default: return false;
}
}