public Entity doCustomSpawning(EntitySpawnMessage spawnMsg) throws Exception { return customSpawnCallback.apply(spawnMsg); }
public void setCustomSpawning(Function<EntitySpawnMessage, Entity> callable, boolean usesVanillaSpawning) { this.customSpawnCallback = callable; this.usesVanillaSpawning = usesVanillaSpawning; }