Fixes sidedness issues when starting up the server.
This commit is contained in:
@@ -150,6 +150,8 @@ public class Platform
|
||||
|
||||
public static final int DEF_OFFSET = 16;
|
||||
|
||||
private static final boolean CLIENT_INSTALL = FMLCommonHandler.instance().getSide().isClient();
|
||||
|
||||
/*
|
||||
* random source, use it for item drop locations...
|
||||
*/
|
||||
@@ -402,6 +404,14 @@ public class Platform
|
||||
return FMLCommonHandler.instance().getEffectiveSide().isClient();
|
||||
}
|
||||
|
||||
/*
|
||||
* returns true if client classes are available.
|
||||
*/
|
||||
public static boolean isClientInstall()
|
||||
{
|
||||
return CLIENT_INSTALL;
|
||||
}
|
||||
|
||||
public static boolean hasPermissions( final DimensionalCoord dc, final EntityPlayer player )
|
||||
{
|
||||
return dc.getWorld().canMineBlockBody( player, dc.getPos() );
|
||||
|
||||
Reference in New Issue
Block a user