Fixed OreDictionary filter in Miner not writing "requireStack" to NBT.

This commit is contained in:
Halvor Lyche Strandvoll 2015-03-24 00:32:04 +01:00
parent c52d41383f
commit 7409a83088

View file

@ -29,6 +29,8 @@ public class MOreDictFilter extends MinerFilter
@Override
public NBTTagCompound write(NBTTagCompound nbtTags)
{
super.write(nbtTags);
nbtTags.setInteger("type", 1);
nbtTags.setString("oreDictName", oreDictName);