Fallback type when mm not on server

This commit is contained in:
RePixelatedMC
2024-05-21 11:23:24 +02:00
parent b0663f9b6c
commit 6ba1d571f2
@@ -462,8 +462,12 @@ public class IrisEntity extends IrisRegistrant {
return null; return null;
} }
} else { } else {
if (isSpecialType()) {
Iris.warn("MythicMobs is not enabled, falling back to: " + type + "'!"); Iris.warn("MythicMobs is not enabled, falling back to: " + type + "'!");
} }
}
return INMS.get().spawnEntity(at, getType(), getReason()); return INMS.get().spawnEntity(at, getType(), getReason());
} }