Ejemplo n.º 1
0
    override protected void Produce()
    {
        Debug.Log("HOLY HELL");

        Caravan new_caravan = Instantiate(caravan, transform.position, Quaternion.identity).GetComponent <Caravan>();

        new_caravan.food = (int)population * 2;
        //Debug.Log(master.transform.position);

        new_caravan.Journey(this, master);
    }