We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc419c1 commit 2202374Copy full SHA for 2202374
src/main/java/com/ferreusveritas/dynamictrees/tree/species/PalmSpecies.java
@@ -36,7 +36,7 @@ public class PalmSpecies extends Species {
36
37
public PalmSpecies(ResourceLocation name, Family family, LeavesProperties leavesProperties) {
38
super(name, family, leavesProperties);
39
- if (!(family instanceof MangroveFamily)) {
+ if (!(family instanceof PalmFamily)) {
40
LogManager.getLogger().warn("Family " + family.getRegistryName() + " for palm species " + getRegistryName() + " is not of type "+ PalmFamily.class);
41
}
42
if (!(leavesProperties instanceof PalmLeavesProperties))
0 commit comments