Spécifie bien que Herbe/Sel sont superposable lors de la construction
This commit is contained in:
parent
6da08ed34f
commit
aef4dd852a
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue