push fixes and version updates
This commit is contained in:
@@ -3,10 +3,11 @@
|
|||||||
## Bugs
|
## Bugs
|
||||||
|
|
||||||
## Current Feature
|
## Current Feature
|
||||||
|
- [ ] Craft Tweaker Support
|
||||||
- [ ] Config to map only wrought iron to vanilla iron or wrought iron to another iron
|
- [ ] Config to map only wrought iron to vanilla iron or wrought iron to another iron
|
||||||
- [ ] Copper Gladius
|
- [ ] Copper Gladius
|
||||||
- [ ] Craft Tweaker Support
|
|
||||||
- [ ] oreDict support for Forge Recipes
|
- [ ] oreDict support for Forge Recipes
|
||||||
|
- [ ] drop a tool handle when crafting
|
||||||
|
|
||||||
## Feature Musket
|
## Feature Musket
|
||||||
- [ ] Create powder charge item (copper, charcoal, gunpowder)
|
- [ ] Create powder charge item (copper, charcoal, gunpowder)
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx3G
|
|||||||
mod_group=nmd.primal.forgecraft
|
mod_group=nmd.primal.forgecraft
|
||||||
mod_name=ForgeCraft
|
mod_name=ForgeCraft
|
||||||
|
|
||||||
mod_version=1.6.15
|
mod_version=1.6.17
|
||||||
forge_version=14.23.4.2744
|
forge_version=14.23.4.2744
|
||||||
mcp_mappings=snapshot_20171003
|
mcp_mappings=snapshot_20171003
|
||||||
mc_version=1.12.2
|
mc_version=1.12.2
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ public class ModInfo {
|
|||||||
//public static final String MOD_PREFIX = MOD_ID + ":";
|
//public static final String MOD_PREFIX = MOD_ID + ":";
|
||||||
public static final String MOD_CHANNEL = MOD_ID;
|
public static final String MOD_CHANNEL = MOD_ID;
|
||||||
|
|
||||||
public static final String MOD_VERSION = "1.6.15";
|
public static final String MOD_VERSION = "1.6.17";
|
||||||
public static final String MC_VERSIONS = "[1.12.0, 1.13.0)";
|
public static final String MC_VERSIONS = "[1.12.0, 1.13.0)";
|
||||||
public static final String DEPENDENCIES = "required-after:forge@[14.21.1.2400,);" + "required-after:primal@[0.6.69,);";
|
public static final String DEPENDENCIES = "required-after:forge@[14.21.1.2400,);" + "required-after:primal@[0.6.69,);";
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import nmd.primal.core.common.helper.CommonUtils;
|
|||||||
import nmd.primal.forgecraft.ModInfo;
|
import nmd.primal.forgecraft.ModInfo;
|
||||||
import nmd.primal.forgecraft.compat.JEI.AbstractCategory;
|
import nmd.primal.forgecraft.compat.JEI.AbstractCategory;
|
||||||
import nmd.primal.forgecraft.init.ModItems;
|
import nmd.primal.forgecraft.init.ModItems;
|
||||||
|
import nmd.primal.forgecraft.items.parts.ToolPart;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
@@ -98,8 +99,12 @@ public class AnvilRecipeCategory extends AbstractCategory<AnvilRecipeWrapper>
|
|||||||
//items.set(0, recipe.getIngredient(0));
|
//items.set(0, recipe.getIngredient(0));
|
||||||
|
|
||||||
for(int i =0; i < 25; i++){
|
for(int i =0; i < 25; i++){
|
||||||
|
if(recipe.getIngredient(i).getItem() instanceof ToolPart) {
|
||||||
|
items.set(i, new ItemStack(recipe.getIngredient(i).getItem(), 1));
|
||||||
|
} else {
|
||||||
items.set(i, recipe.getIngredient(i));
|
items.set(i, recipe.getIngredient(i));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/***OUTPUTS***/
|
/***OUTPUTS***/
|
||||||
items.init(25, false, 133, 40);
|
items.init(25, false, 133, 40);
|
||||||
|
|||||||
@@ -101,6 +101,11 @@ public interface AnvilHandler extends ToolMaterialMap {
|
|||||||
|
|
||||||
if (recipe.getUpgrade() == "repair") {
|
if (recipe.getUpgrade() == "repair") {
|
||||||
CommonUtils.spawnItemEntityFromWorld(world, pos, outputStack);
|
CommonUtils.spawnItemEntityFromWorld(world, pos, outputStack);
|
||||||
|
for (int i = 0; i < tile.getSlotListSize(); i++) {
|
||||||
|
if (!tile.getSlotStack(i).isEmpty()) {
|
||||||
|
tile.setSlotStack(i, ItemStack.EMPTY);
|
||||||
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
BIN
kfc/src/main/resources/assets/forgecraft/textures/logo.png
Normal file
BIN
kfc/src/main/resources/assets/forgecraft/textures/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 376 B |
@@ -2,7 +2,7 @@
|
|||||||
"modid": "forgecraft",
|
"modid": "forgecraft",
|
||||||
"name": "Kitsu's Forgecraft",
|
"name": "Kitsu's Forgecraft",
|
||||||
"description": "Forged with sweat and blood",
|
"description": "Forged with sweat and blood",
|
||||||
"version": "1.6.15",
|
"version": "1.6.17",
|
||||||
"mcversion": "1.12.2",
|
"mcversion": "1.12.2",
|
||||||
"url": "",
|
"url": "",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
|
|||||||
Reference in New Issue
Block a user