Skip to content

Commit

Permalink
update to 1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dcetidre committed Jan 21, 2020
1 parent e56d31e commit 5a2611a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.15.1
yarn_mappings=1.15.1+build.24
loader_version=0.7.3+build.176
minecraft_version=1.15.2
yarn_mappings=1.15.2+build.1
loader_version=0.7.5+build.178

# Mod Properties
mod_version = 1.1.5
mod_version = 1.1.6
maven_group = com.software.ddk
archives_base_name = coloredfire

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.4.27+build.286-1.15
fabric_version=0.4.29+build.290-1.15
2 changes: 1 addition & 1 deletion src/main/java/com/software/ddk/coloredfire/ModContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static void RegisterAll(){
ColoredFireMod.COLOREDLOG.info("Colored Flames Mod Loading");

//blockentity
DYEABLE_FIRE_BLOCK_ENTITY = Registry.register(Registry.BLOCK_ENTITY, new Identifier(ColoredFireMod.MODID, "dyeablefireblockentity"), BlockEntityType.Builder.create(DyeableFireBlockEntity::new, DYEABLE_FIRE_BLOCK).build(null));
DYEABLE_FIRE_BLOCK_ENTITY = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(ColoredFireMod.MODID, "dyeablefireblockentity"), BlockEntityType.Builder.create(DyeableFireBlockEntity::new, DYEABLE_FIRE_BLOCK).build(null));

//blocks
Registry.register(Registry.BLOCK, new Identifier(ColoredFireMod.MODID, "blue_fire"), BLUE_FIRE_BLOCK);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.software.ddk.coloredfire.util.Colors;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap;
import net.fabricmc.fabric.api.client.render.ColorProviderRegistry;
import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.render.RenderLayer;
import net.minecraft.item.DyeableItem;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"depends": {
"fabricloader": ">=0.4.0",
"fabric": "*",
"minecraft": "1.15.x"
"minecraft": "1.15.2"
},
"suggests": {
"me": "*"
Expand Down

0 comments on commit 5a2611a

Please sign in to comment.