Unity Prefab Best Practices
Link prefabs to prefabs; do not link instances to instances This is from 50 Tips for Working with Unity
Use GameObject.Find to establish links between instances if you have to. It's best to not having to establish links between instances and use prebabs instead. Don't link instance ...