This commit is contained in:
2026-02-13 18:37:24 +01:00
parent b646f5ca78
commit eae4adab35
10 changed files with 97 additions and 10 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ struct animal *animal_from_insect(const char *color, struct insect *insect){
}
strcpy(animal->color, color);
animal->type = 0;
animal->type = INSECT;
animal->animal.insect = insect;
return animal;
}