public void processPacket(EntityPlayer player) {
ModuleThaumicAspectSink module = this.getLogisticsModule(player, ModuleThaumicAspectSink.class);
if(module == null) return;
module.readFromNBT(getTag());
if(MainProxy.isServer(player.getEntityWorld()) && this.getType().isInWorld()) {
module.aspectListChanged();
}
}
}