Fixed lava crystal working even if there is no LP available. Causes a desync on server worlds.
This commit is contained in:
parent
18a36b9778
commit
8ec653b2a7
|
@ -13,6 +13,8 @@ Version 2.0.0-17
|
|||
- Ender Severance
|
||||
- Haste
|
||||
- Dagger now bypasses checks of armour
|
||||
- Fixed issue with lava crystal working even their is no LP available.
|
||||
- Added upgrade trainer
|
||||
|
||||
------------------------------------------------------
|
||||
Version 2.0.0-16
|
||||
|
|
|
@ -32,6 +32,11 @@ public class NetworkHelper
|
|||
public static SoulNetwork getSoulNetwork(String name)
|
||||
{
|
||||
World world = DimensionManager.getWorld(0);
|
||||
if (world == null || world.getMapStorage() == null) //Hack-ish way to fix the lava crystal.
|
||||
{
|
||||
return new SoulNetwork(name);
|
||||
}
|
||||
|
||||
SoulNetwork network = (SoulNetwork) world.getMapStorage().loadData(SoulNetwork.class, name);
|
||||
|
||||
if (network == null)
|
||||
|
|
|
@ -51,10 +51,12 @@ public class ItemLavaCrystal extends ItemBindable implements IFuelHandler
|
|||
|
||||
if (fuelItem instanceof ItemLavaCrystal)
|
||||
{
|
||||
if (FMLCommonHandler.instance().getSide() == Side.CLIENT)
|
||||
{
|
||||
return 200;
|
||||
}
|
||||
System.out.println("Test get burn time: Side = " + FMLCommonHandler.instance().getSide());
|
||||
//
|
||||
// if (FMLCommonHandler.instance().getSide() == Side.CLIENT)
|
||||
// {
|
||||
// return 200;
|
||||
// }
|
||||
|
||||
if (canSyphonFromNetwork(fuel, getLPUsed()))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue