Fix client always reporting 0 LP

This commit is contained in:
Nick 2016-01-24 17:47:11 -08:00
parent de08e5d0ac
commit ad296a8e0e
3 changed files with 35 additions and 35 deletions

View file

@ -33,11 +33,6 @@ public class NetworkHelper
*/
public static SoulNetwork getSoulNetwork(String name)
{
if (FMLCommonHandler.instance().getSide() == Side.CLIENT)
{
return new SoulNetwork(name);
}
World world = DimensionManager.getWorld(0);
SoulNetwork network = (SoulNetwork) world.getMapStorage().loadData(SoulNetwork.class, name);