Open nskartem opened 9 years ago
And if you want to full mod archive, i can send it to you
Or can you send me you 1.6.4 sources? I also edited some things in tools chest (now it ignore some items,and cost of repair increased)
Would you like to contact me via Skype to discuss this? My Skype username is the same as my github username :+1:
Hi, I have that bug again. When I save world on my server, I have that message: java.io.FileNotFoundException: .\DIM1\tmpntwch.dat I fixed it in 1.5.2, but I doesn't have 1.6.4 sources. I can send you my fix, it works for me in 1.5.2, but i occasionally deleted sources with my work:(. It in ChestNetworkSaveHandler.class
AWWW YEAH, i reversed it!
package w577.mods.utilitychest;
import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.HashMap;
import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.CompressedStreamTools; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagList; import net.minecraft.nbt.NBTTagString; import net.minecraft.server.MinecraftServer; import net.minecraft.server.dedicated.DedicatedServer; import net.minecraft.server.integrated.IntegratedServer; import net.minecraft.world.World; import net.minecraft.world.chunk.storage.AnvilChunkLoader; import net.minecraft.world.storage.ISaveHandler; import net.minecraftforge.event.ForgeSubscribe; import net.minecraftforge.event.world.WorldEvent.Load; import net.minecraftforge.event.world.WorldEvent.Save; import net.minecraftforge.event.world.WorldEvent.Unload;
public class ChestNetworkSaveHandler {
}