diff --git a/src/herbe.cpp b/src/herbe.cpp index e8a1bb5..bb4a8d7 100644 --- a/src/herbe.cpp +++ b/src/herbe.cpp @@ -1,6 +1,6 @@ #include "../includes/herbe.hpp" -Herbe::Herbe(const int univers_ID, const int index): Organisme(univers_ID, index) { +Herbe::Herbe(const int univers_ID, const int index): Organisme(univers_ID, true, index) { m_correspondance[ID] = _m_lettre; } diff --git a/src/sel.cpp b/src/sel.cpp index cc55259..3df9730 100644 --- a/src/sel.cpp +++ b/src/sel.cpp @@ -1,7 +1,7 @@ #include "../includes/sel.hpp" #include "../includes/univers.hpp" -Sel::Sel(const int univers_ID, const int index): Organisme(univers_ID, index) { +Sel::Sel(const int univers_ID, const int index): Organisme(univers_ID, true, index) { m_correspondance[ID] = _m_lettre; }