Finished non-rendering components for the Soul Forge.

This commit is contained in:
WayofTime 2016-01-08 10:27:26 -05:00
parent 7b8646659a
commit 16a50f7144
6 changed files with 131 additions and 15 deletions

View file

@ -34,6 +34,8 @@ public class SoulForgeRecipe
public SoulForgeRecipe(ItemStack result, double minSouls, double drain, Object... recipe)
{
output = result.copy();
this.minimumSouls = minSouls;
this.soulsDrained = drain;
for (Object in : recipe)
{
if (in instanceof ItemStack)
@ -71,7 +73,7 @@ public class SoulForgeRecipe
public ItemStack getRecipeOutput()
{
return output;
return output.copy();
}
/**