Skip to content

Commit bd52427

Browse files
committed
Fixed MapAuraIngredient's convertToMapIngredient not being registered in common setup
1 parent 95a97a1 commit bd52427

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx1G
1010
mapping_version=2023.09.03-1.20.1
1111

1212
# Mod Properties
13-
mod_version=2.3.0
13+
mod_version=2.3.1
1414
maven_group=com.illuminatijoe.refactorycore
1515
archives_base_name=refactorycore
1616
mod_id=refactorycore

src/main/java/com/illuminatijoe/refactorycore/ReFactoryCore.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.illuminatijoe.refactorycore.api.ReFactoryRegistries;
44
import com.illuminatijoe.refactorycore.api.capabilities.IAuraContainer;
55
import com.illuminatijoe.refactorycore.api.capabilities.ILPContainer;
6+
import com.illuminatijoe.refactorycore.api.capabilities.recipe.lookup.MapAuraIngredient;
67
import com.illuminatijoe.refactorycore.api.capabilities.recipe.lookup.MapLPIngredient;
78
import com.illuminatijoe.refactorycore.client.ReFactoryCoreClient;
89
import com.illuminatijoe.refactorycore.data.ReFactoryBlocks;
@@ -75,6 +76,7 @@ public ReFactoryCore() {
7576
private void commonSetup(final FMLCommonSetupEvent event) {
7677
event.enqueueWork(() -> {
7778
MapIngredientTypeManager.registerMapIngredient(Integer.class, MapLPIngredient::convertToMapIngredient);
79+
MapIngredientTypeManager.registerMapIngredient(Integer.class, MapAuraIngredient::convertToMapIngredient);
7880
});
7981
}
8082

0 commit comments

Comments
 (0)