From aef4dd852afcfa2f7b6be2519eb5593fdf1d3301 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 12 Apr 2022 00:36:07 +0200 Subject: [PATCH] =?UTF-8?q?Sp=C3=A9cifie=20bien=20que=20Herbe/Sel=20sont?= =?UTF-8?q?=20superposable=20lors=20de=20la=20construction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/herbe.cpp | 2 +- src/sel.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }