Spécifie bien que Herbe/Sel sont superposable lors de la construction

This commit is contained in:
Mylloon 2022-04-12 00:36:07 +02:00
parent 6da08ed34f
commit aef4dd852a
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}