Skip to content

Commit

Permalink
- fix: いくつかのテクスチャ指定ミス
Browse files Browse the repository at this point in the history
  • Loading branch information
defeatedcrow committed Apr 18, 2018
1 parent c192466 commit 2e28985
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion java/defeatedcrow/hac/food/item/CakeItem.java
Expand Up @@ -31,7 +31,7 @@ public CakeItem(boolean isWolfFood) {

@Override
public int getMaxMeta() {
return 5;
return 9;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion java/defeatedcrow/hac/food/item/ItemFluidPack.java
Expand Up @@ -176,7 +176,7 @@ public static int getMetaFromFluid(Fluid fluid) {
int meta = 0;
if (fluid == FluidRegistry.WATER) {
meta = 1;
} else if (fluid.getName().contains("milk")) {
} else if (fluid.getName().equalsIgnoreCase("milk")) {
meta = 2;
} else if (fluid == FoodInit.cream) {
meta = 3;
Expand Down
2 changes: 1 addition & 1 deletion java/defeatedcrow/hac/main/ClimateMain.java
Expand Up @@ -39,7 +39,7 @@ public class ClimateMain {
public static final String MOD_NAME = "HeatAndClimateMod";
public static final int MOD_MEJOR = 2;
public static final int MOD_MINOR = 3;
public static final int MOD_BUILD = 7;
public static final int MOD_BUILD = 8;
public static final String MOD_DEPENDENCIES = "required-after:dcs_lib@[2.3.1,)";

@SidedProxy(clientSide = "defeatedcrow.hac.main.client.ClientMainProxy", serverSide = "defeatedcrow.hac.main.CommonMainProxy")
Expand Down
@@ -0,0 +1,9 @@
{
"forge_marker": 1,
"variants": {
"fluid": {
"model" : "forge:fluid",
"custom": { "fluid": "dcs.mazai" }
}
}
}
@@ -0,0 +1 @@
{"parent":"item/generated","textures":{"layer0":"dcs_climate:blocks/fluid/mazai_still"}}
@@ -1 +1 @@
{"parent":"item/generated","textures":{"layer0":"dcs_climate:items/food/cake_egg_cocotte_raw"}}
{"parent":"item/generated","textures":{"layer0":"dcs_climate:items/food/egg_cocotte_raw"}}
@@ -1 +1 @@
{"parent":"item/generated","textures":{"layer0":"dcs_climate:items/food/cake_egg_cocotte_baked"}}
{"parent":"item/generated","textures":{"layer0":"dcs_climate:items/food/egg_cocotte_baked"}}
2 changes: 1 addition & 1 deletion resources/mcmod.info
Expand Up @@ -14,7 +14,7 @@
"name":"HeatAndClimateMod",
"url":"http://defeatedcrow.jp/modwiki/HeatAndClimate",
"updateUrl":"",
"version":"1.12.1_2.3.7",
"version":"1.12.1_2.3.8",
"requiredMods":[
"Minecraft Forge1.10.2-12.18.3.2316+", "HeatAndClimateLib-1.10.2_2.3.0+"
]
Expand Down

0 comments on commit 2e28985

Please sign in to comment.