diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/worldgen/EnhancedPlacedFeature.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/worldgen/EnhancedPlacedFeature.kt index 3b002d3df..b413d6273 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/worldgen/EnhancedPlacedFeature.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/worldgen/EnhancedPlacedFeature.kt @@ -285,10 +285,12 @@ object EnhancedPlacedFeature : Feature( return Builder(root ?: this, action).also(children::add) } + @JvmName("thenVanilla") fun then(action: ConfiguredFeature<*, *>): Builder { return then(EnhancedFeature.Wrapper.configure(action)) } + @JvmName("thenVanilla") fun then(action: Holder>): Builder { return then(EnhancedFeature.Wrapper.configure(action)) }