Skip to content

Commit

Permalink
Ahora taller 2 se puede consumir multiples veces
Browse files Browse the repository at this point in the history
Ahora taller 2 se puede consumir mas de una vez.
  • Loading branch information
RiedelNicolas committed Nov 29, 2023
1 parent bf8ce72 commit a7db794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ function App() {
if (materia.equivalencias[i].materias.length === 0)
continue;

if (taller2Usada && materia.equivalencias[i].materias.includes("Taller de Programación II"))
continue;
// it looks that una materia se puede usar mas de una vez chabon
// if (taller2Usada && materia.equivalencias[i].materias.includes("Taller de Programación II"))
// continue;

if (tieneMaterias(materia.equivalencias[i].materias)) {
_materias23.push(materia.nombre);
Expand Down
4 changes: 4 additions & 0 deletions src/plan_23.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@
{
"materias": ["Sistemas Distribuidos I"],
"creditos": 0
},
{
"materias": ["Taller de Programación II", "Modelos y Optimización I"],
"creditos": 0
}
],
"canjeable": 6
Expand Down

0 comments on commit a7db794

Please sign in to comment.