b11354767d
Moved all configuration variables from mod_pocketDim to DDProperties (formerly DimDoorsConfig). Changed property names to be clearer in config file, modified some comments, and generally cleaned up the config file. Fixed some missing properties and variables that were reading from the wrong properties. Modified the order in which mod_pocketDim instantiated some of its static fields so that they would load after properties are read. Almost all classes load after properties are read. Fixed indentation across various files and replaced references to properties in mod_pocketDim with references to DDProperties.
15 lines
No EOL
419 B
Java
15 lines
No EOL
419 B
Java
package StevenDimDoors.mod_pocketDim;
|
|
|
|
import net.minecraft.network.INetworkManager;
|
|
import net.minecraft.network.packet.Packet250CustomPayload;
|
|
import cpw.mods.fml.common.network.IPacketHandler;
|
|
import cpw.mods.fml.common.network.Player;
|
|
|
|
public class ServerPacketHandler implements IPacketHandler
|
|
{
|
|
@Override
|
|
public void onPacketData(INetworkManager manager,
|
|
Packet250CustomPayload packet, Player player)
|
|
{
|
|
}
|
|
} |